Simplify Linux CI jobs

This commit is contained in:
Chris Thrasher
2025-04-26 19:27:32 -06:00
parent c17d69f813
commit 10d1a2750c
4 changed files with 38 additions and 64 deletions

View File

@@ -1,4 +1,4 @@
name: Bazel build
name: Linux Builds (Bazel)
on: [push, pull_request]
@@ -14,12 +14,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Mount bazel cache
- 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}} //...
- name: Build
run: bazelisk build --compilation_mode=${{matrix.compilation_mode}} //...