Skip to content

Commit c6bb479

Browse files
authored
Update amd64 macos workflow to use X86 arch (#355)
* Update AMD64 macos workflow to use X86 arch * Set macos-13 for nmake in amd64_macos_cmake.yml * Add comment after macos-13
1 parent 685a6a1 commit c6bb479

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/amd64_macos_bazel.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ref: https://github.com/actions/runner-images
12
name: amd64 MacOS Bazel
23

34
on:
@@ -10,7 +11,7 @@ on:
1011
jobs:
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

.github/workflows/amd64_macos_cmake.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ref: https://github.com/actions/runner-images
12
name: amd64 MacOS CMake
23

34
on:
@@ -10,7 +11,7 @@ on:
1011
jobs:
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:
@@ -26,7 +27,7 @@ jobs:
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:

0 commit comments

Comments
 (0)