Merge pull request #26 from Vertexwahn/bzlmod2 #128
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
name: Bazel | |
on: | |
pull_request: {} | |
push: {} | |
jobs: | |
build_and_test_ubuntu20: | |
name: Linux Ubuntu 20.04 build <GCC 9.4.0> | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Build | |
run: | | |
cd tests | |
bazelisk build --config=gcc9 //... | |
build_and_test_ubuntu22: | |
name: Linux Ubuntu 22.04 build <GCC 11.4.0> | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Build | |
run: | | |
cd tests | |
bazelisk build --config=gcc11 //... | |
build_and_test_ubuntu24: | |
name: Linux Ubuntu 24.04 build <GCC 13.2.0> | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Build | |
run: | | |
cd tests | |
bazelisk build --config=gcc13 //... | |
build_and_test_windows10: | |
name: Windows Server 2019 build <Visual Studio 2019> | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/[email protected] | |
- name: Build | |
run: | | |
cd tests | |
bazelisk build --config=vs2019 //... | |
build_and_test_windows11: | |
name: Windows Server 2022 build <Visual Studio 2022> | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/[email protected] | |
- name: Build | |
run: | | |
cd tests | |
bazelisk build --config=vs2022 //... | |
build_and_test_macos13: | |
name: macOS 13 Bazel build <Apple Clang14> | |
runs-on: macOS-13 | |
steps: | |
- uses: actions/[email protected] | |
- name: Print info | |
run: | | |
echo "OS info:" | |
sw_vers | |
uname | |
echo "Compiler info:" | |
clang --version | |
- name: Build | |
run: | | |
cd tests | |
bazelisk build --config=macos //... | |
build_and_test_macos14: | |
name: macOS 14 Bazel build <Apple Clang14> | |
runs-on: macOS-14 | |
steps: | |
- uses: actions/[email protected] | |
- name: Print info | |
run: | | |
echo "OS info:" | |
sw_vers | |
uname | |
echo "Compiler info:" | |
clang --version | |
- name: Build | |
run: | | |
cd tests | |
bazelisk build --config=macos //... | |
build_and_test_macos15: | |
name: macOS 15 Bazel build <Apple Clang14> | |
runs-on: macOS-15 | |
steps: | |
- uses: actions/[email protected] | |
- name: Print info | |
run: | | |
echo "OS info:" | |
sw_vers | |
uname | |
echo "Compiler info:" | |
clang --version | |
- name: Build | |
run: | | |
cd tests | |
bazelisk build --config=macos //... |