Skip to content

Commit

Permalink
Update amd64 macos workflow to use X86 arch (#355)
Browse files Browse the repository at this point in the history
* Update AMD64 macos workflow to use X86 arch

* Set macos-13 for nmake in amd64_macos_cmake.yml

* Add comment after macos-13
  • Loading branch information
toor1245 authored Aug 28, 2024
1 parent 685a6a1 commit c6bb479
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/amd64_macos_bazel.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# ref: https://github.com/actions/runner-images
name: amd64 MacOS Bazel

on:
Expand All @@ -10,7 +11,7 @@ on:
jobs:
# Building using the github runner environement directly.
bazel:
runs-on: macos-latest
runs-on: macos-13 # Using x86 processors, ref: https://github.com/actions/runner-images
steps:
- name: Check out repository code
uses: actions/checkout@v3
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/amd64_macos_cmake.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# ref: https://github.com/actions/runner-images
name: amd64 MacOS CMake

on:
Expand All @@ -10,7 +11,7 @@ on:
jobs:
# Building using the github runner environement directly.
xcode:
runs-on: macos-latest
runs-on: macos-13 # Using x86 processors, ref: https://github.com/actions/runner-images
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
Expand All @@ -26,7 +27,7 @@ jobs:
- name: Install
run: cmake --build build --config Release --target install -v
make:
runs-on: macos-latest
runs-on: macos-13 # Using x86 processors, ref: https://github.com/actions/runner-images
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
Expand Down

0 comments on commit c6bb479

Please sign in to comment.