File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1+ # ref: https://github.com/actions/runner-images
12name : amd64 MacOS Bazel
23
34on :
1011jobs :
1112 # Building using the github runner environement directly.
1213 bazel :
13- runs-on : macos-latest
14+ runs-on : macos-13 # Using x86 processors, ref: https://github.com/actions/runner-images
1415 steps :
1516 - name : Check out repository code
1617 uses : actions/checkout@v3
Original file line number Diff line number Diff line change 1+ # ref: https://github.com/actions/runner-images
12name : amd64 MacOS CMake
23
34on :
1011jobs :
1112 # Building using the github runner environement directly.
1213 xcode :
13- runs-on : macos-latest
14+ runs-on : macos-13 # Using x86 processors, ref: https://github.com/actions/runner-images
1415 env :
1516 CTEST_OUTPUT_ON_FAILURE : 1
1617 steps :
2627 - name : Install
2728 run : cmake --build build --config Release --target install -v
2829 make :
29- runs-on : macos-latest
30+ runs-on : macos-13 # Using x86 processors, ref: https://github.com/actions/runner-images
3031 env :
3132 CTEST_OUTPUT_ON_FAILURE : 1
3233 steps :
You can’t perform that action at this time.
0 commit comments