bump all bazel modules; bump go deps; use py_proto_library from protobuf #2213
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/docker-library/official-images | |
name: amd64 Docker CMake | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
cmake: | |
strategy: | |
matrix: | |
distro: [almalinux, alpine, archlinux, debian, fedora, opensuse, rockylinux, ubuntu] | |
lang: [cpp, python, dotnet, java] | |
fail-fast: false | |
name: ${{ matrix.distro }} • CMake • ${{ matrix.lang }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build base image | |
run: make --directory=cmake ${{ matrix.distro }}_base | |
- name: Build env image | |
run: make --directory=cmake ${{ matrix.distro }}_${{ matrix.lang }}_env | |
- name: Build devel image | |
run: make --directory=cmake ${{ matrix.distro }}_${{ matrix.lang }}_devel | |
- name: Build project | |
run: make --directory=cmake ${{ matrix.distro }}_${{ matrix.lang }}_build | |
- name: Test project | |
run: make --directory=cmake ${{ matrix.distro }}_${{ matrix.lang }}_test | |
- name: Build install env image | |
run: make --directory=cmake ${{ matrix.distro }}_${{ matrix.lang }}_install_env | |
- name: Build install devel image | |
run: make --directory=cmake ${{ matrix.distro }}_${{ matrix.lang }}_install_devel | |
- name: Build install project | |
run: make --directory=cmake ${{ matrix.distro }}_${{ matrix.lang }}_install_build | |
- name: Test install project | |
run: make --directory=cmake ${{ matrix.distro }}_${{ matrix.lang }}_install_test |