Improve the Xpress interface and add dynamic loading of the Xpress library #543
Workflow file for this run
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, workflow_dispatch] | |
jobs: | |
bazel: | |
strategy: | |
matrix: | |
distro: [alpine, archlinux, centos, debian, fedora, opensuse, ubuntu] | |
fail-fast: false | |
name: ${{ matrix.distro }} • Bazel • C++ | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build env image | |
run: make --directory=bazel ${{ matrix.distro }}_env | |
- name: Build devel image | |
run: make --directory=bazel ${{ matrix.distro }}_devel | |
- name: Build project | |
run: make --directory=bazel ${{ matrix.distro }}_build | |
- name: Test project | |
run: make --directory=bazel ${{ matrix.distro }}_test |