Merge branch 'main' of github.com:google/or-tools #267
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ref: https://github.com/actions/runner-images | |
name: amd64 Docker Bazel | |
on: [push, pull_request] | |
jobs: | |
bazel: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.allow_failure }} | |
strategy: | |
matrix: | |
distro: [alpine, archlinux, centos, debian, fedora, opensuse, ubuntu] | |
allow_failure: [false] | |
fail-fast: false | |
env: | |
DISTRO: ${{ matrix.distro }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build env image | |
run: make --directory=bazel ${DISTRO}_env | |
- name: Build devel image | |
run: make --directory=bazel ${DISTRO}_devel | |
- name: Build project | |
run: make --directory=bazel ${DISTRO}_build | |
- name: Test project | |
run: make --directory=bazel ${DISTRO}_test |