graph: fix windows build #3560
This file contains hidden or 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/docker-library/official-images | |
| name: amd64 Docker Bazel | |
| on: | |
| push: | |
| branches: | |
| - ci | |
| - main | |
| - v99bugfix | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{github.workflow}}-${{github.ref}} | |
| cancel-in-progress: true | |
| jobs: | |
| bazel: | |
| strategy: | |
| matrix: | |
| distro: [ | |
| almalinux, | |
| # alpine, | |
| # require scip 10.0.2 for glibc 2.43 support | |
| # see: https://github.com/google/or-tools/issues/5116 | |
| # archlinux, | |
| debian, | |
| fedora, | |
| opensuse, | |
| rockylinux, | |
| ubuntu | |
| ] | |
| fail-fast: false | |
| name: amd64•${{matrix.distro}}•Bazel | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check docker | |
| run: | | |
| docker info | |
| docker buildx ls | |
| - name: Build env image | |
| run: make --directory=bazel amd64_${{matrix.distro}}_env | |
| - name: Build devel image | |
| run: make --directory=bazel amd64_${{matrix.distro}}_devel | |
| - name: Build project | |
| run: make --directory=bazel amd64_${{matrix.distro}}_build | |
| - name: Test project | |
| run: make --directory=bazel amd64_${{matrix.distro}}_test |