Skip to content

Commit

Permalink
Add macOS 13 CI build job
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 41439ee99b2be3c5fb19ead420e995c90494de66
  • Loading branch information
Vertexwahn committed Jul 31, 2023
1 parent 7def3fa commit d1ce083
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion .github/workflows/bazel_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
bazelisk build --config=macos //...
build_and_test_macos12:
name: macOS 12 Bazel build <Apple Clang13>
name: macOS 12 Bazel build <Apple Clang14>
runs-on: macOS-12

steps:
Expand All @@ -132,3 +132,31 @@ jobs:
#brew link qt@6
cd tests
bazelisk build --config=macos //...
build_and_test_macos13:
name: macOS 13 Bazel build <Apple Clang14>
runs-on: macOS-13

steps:
- uses: actions/checkout@v3

- name: Mount bazel cache
uses: actions/cache@v3
with:
path: "/home/runner/.cache/bazel"
key: bazel

- name: Print info
run: |
echo "OS info:"
sw_vers
uname
echo "Compiler info:"
clang --version
- name: Build
run: |
brew install qt@6
#brew link qt@6
cd tests
bazelisk build --config=macos //...

0 comments on commit d1ce083

Please sign in to comment.