The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.6 KiB
56 lines
1.6 KiB
name: CI image builder |
|
|
|
on: |
|
push: |
|
branches: |
|
- master |
|
paths: |
|
- 'ci/ciimage/**' |
|
- '.github/workflows/images.yml' |
|
|
|
pull_request: |
|
branches: |
|
- master |
|
paths: |
|
- 'ci/ciimage/**' |
|
- '.github/workflows/images.yml' |
|
|
|
# Rebuild the images every week (Sunday) |
|
schedule: |
|
- cron: '0 0 * * 0' |
|
|
|
jobs: |
|
build: |
|
name: ${{ matrix.cfg.name }} |
|
runs-on: ubuntu-latest |
|
strategy: |
|
fail-fast: false |
|
matrix: |
|
cfg: |
|
- { name: Arch Linux, id: arch } |
|
- { name: CUDA (on Arch), id: cuda } |
|
- { name: Fedora, id: fedora } |
|
- { name: OpenSUSE, id: opensuse } |
|
- { name: Ubuntu Bionic, id: bionic } |
|
- { name: Ubuntu Rolling, id: ubuntu-rolling } |
|
steps: |
|
- uses: actions/checkout@v2 |
|
|
|
# Login to dockerhub |
|
- name: Docker login |
|
if: github.event_name == 'push' || github.event_name == 'schedule' |
|
uses: azure/docker-login@v1 |
|
with: |
|
username: ${{ secrets.DOCKER_USERNAME }} |
|
password: ${{ secrets.DOCKER_PASSWORD }} |
|
|
|
# Build and test |
|
- name: Building the ${{ matrix.cfg.id }} image |
|
run: ./ci/ciimage/build.py -t build ${{ matrix.cfg.id }} |
|
- name: Testing the ${{ matrix.cfg.id }} image |
|
run: ./ci/ciimage/build.py -t test ${{ matrix.cfg.id }} |
|
|
|
# Publish |
|
- name: Push the ${{ matrix.cfg.id }} image |
|
if: github.event_name == 'push' || github.event_name == 'schedule' |
|
run: docker push mesonbuild/${{ matrix.cfg.id }}
|
|
|