Skip to content

Commit

Permalink
update macos runner image
Browse files Browse the repository at this point in the history
The MacOS-12 runner is now deprecated and will be removed:
actions/runner-images#10721.

Use `macos-13` instead, which still uses the x86_64 architecture. Can't use 14,
though, because that's a larger runner and is not freely available.
  • Loading branch information
garfieldnate committed Oct 16, 2024
1 parent fccaa0d commit 5392210
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build, test and upload executables to GitHub
# depends on pre-installed software; see image definitions:
# - https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2404-Readme.md
# - https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md
# - https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
# We use these tools from the runner images: git, gcc/XCode/MSVC, swig, Tcl/Tk on MacOS, pkg-config

# TODO: not building svs_viewer ('Cannot find GL, GLU, not building svs_viewer' and 'Cannot find opengl32, glu32, not building svs_viewer')
Expand Down Expand Up @@ -30,8 +30,8 @@ jobs:
os: [
# Use v24 beta for now to get newer SWIG; TODO: change back to ubuntu-latest once it points to v24
ubuntu-24.04,
# latest available X86_64 target
macos-12,
# latest available free X86_64 target
macos-13,
# latest is ARM
macos-latest,
]
Expand Down Expand Up @@ -277,8 +277,8 @@ jobs:
os: [
# 20.04 to preserve compatibility with testing stage
ubuntu-20.04,
# latest available X86_64 target
macos-12,
# latest available free X86_64 target
macos-13,
# latest is ARM
macos-latest,

Expand Down Expand Up @@ -363,8 +363,8 @@ jobs:
os:
# linux target which supports all python versions we want to install for
- ubuntu-20.04
# latest available X86_64 target
- macos-12
# latest available free X86_64 target
- macos-13
# latest is ARM
- macos-latest
- windows-latest
Expand Down

0 comments on commit 5392210

Please sign in to comment.