Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Buildbot Workflow #6

Closed
wants to merge 25 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions .github/workflows/buildbot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Buildbot

on:
- push
- pull_request

jobs:
build:
name: Build
runs-on: ubuntu-latest

strategy:
matrix:
builder:
- "AMD64 Debian 9 Rust 1.35"
- "AMD64 Debian 9 Go 1.11.11"
- "AMD64 Debian 9 Go 1.12.6"
- "AMD64 Conda C++"
- "AMD64 Conda Python 2.7"
- "AMD64 Conda Python 3.6"
- "AMD64 Conda Python 3.7"
- "AMD64 Conda R"
- "AMD64 Debian 9 NodeJS 11"
- "AMD64 Java OpenJDK 11"
- "AMD64 Java OpenJDK 8"
- "AMD64 Ubuntu 18.04 C GLib"
- "AMD64 Ubuntu 18.04 C++"
- "AMD64 Ubuntu 18.04 Python 3"
- "AMD64 Ubuntu 18.04 R"

steps:

- name: Show Environment
run: env

- name: Checkout Ursabot
uses: actions/checkout@v1
with:
repository: ursa-labs/ursabot
ref: refs/heads/master
path: ursabot

- name: Install Python
uses: actions/setup-python@v1
with:
python-version: '3.7'

- name: Install Ursabot
run: pip install -e ../ursabot

- name: Check Ursabot Command
run: ursabot --help

- name: Run ${{ matrix.builder }} Builder
run: |
cd ../ursabot/projects/arrow
ursabot project build \
--repo https://github.com/$GITHUB_REPOSITORY \
--branch $GITHUB_REF \
--commit $GITHUB_SHA \
--property ARROW_S3=OFF \
"${{ matrix.builder }}"