aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/linux-bazel-builds.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/linux-bazel-builds.yml')
-rw-r--r--.github/workflows/linux-bazel-builds.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/linux-bazel-builds.yml b/.github/workflows/linux-bazel-builds.yml
new file mode 100644
index 0000000..dc826ac
--- /dev/null
+++ b/.github/workflows/linux-bazel-builds.yml
@@ -0,0 +1,24 @@
+name: Bazel build
+
+on: [push, pull_request]
+
+jobs:
+ build_and_test_ubuntu:
+ name: Linux Ubuntu 22.04 Bazel build <GCC 11.2.0>
+ runs-on: ubuntu-22.04
+ strategy:
+ matrix:
+ compilation_mode: [fastbuild, dbg, opt]
+
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Mount bazel cache
+ uses: actions/cache@v3
+ with:
+ path: "/home/runner/.cache/bazel"
+ key: bazel-ubuntu22-gcc11
+
+ - name: Build Catch2
+ run: |
+ bazelisk build --compilation_mode=${{matrix.compilation_mode}} //...