Skip to content

Commit

Permalink
ENH: Switch Github Actions macOS environment
Browse files Browse the repository at this point in the history
Switch Github Actions macOS environment version to `macos-11`.

`macOS-10.15` is being deprecated and supported will end by 8/30/2022:
actions/runner-images#5583

Related to recent warnings in the Azure Pipelines macOS environment
being used in the main ITK repository:
InsightSoftwareConsortium/ITK@e5595de
  • Loading branch information
jhlegarreta committed Jul 2, 2024
1 parent 7414518 commit 99c78ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
max-parallel: 3
matrix:
os: [ubuntu-20.04, windows-2019, macos-10.15]
os: [ubuntu-20.04, windows-2019, macos-11]
include:
- os: ubuntu-20.04
c-compiler: "gcc"
Expand All @@ -22,7 +22,7 @@ jobs:
c-compiler: "cl.exe"
cxx-compiler: "cl.exe"
cmake-build-type: "Release"
- os: macos-10.15
- os: macos-11
c-compiler: "clang"
cxx-compiler: "clang++"
cmake-build-type: "MinSizeRel"
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
path: Evaluated/ITKModuleTemplate/dist

build-macos-python-packages:
runs-on: macos-10.15
runs-on: macos-11
strategy:
max-parallel: 2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
max-parallel: 3
matrix:
os: [ubuntu-20.04, windows-2019, macos-10.15]
os: [ubuntu-20.04, windows-2019, macos-11]
include:
- os: ubuntu-20.04
c-compiler: "gcc"
Expand All @@ -22,7 +22,7 @@ jobs:
c-compiler: "cl.exe"
cxx-compiler: "cl.exe"
cmake-build-type: "Release"
- os: macos-10.15
- os: macos-11
c-compiler: "clang"
cxx-compiler: "clang++"
cmake-build-type: "MinSizeRel"
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
path: dist

build-macos-python-packages:
runs-on: macos-10.15
runs-on: macos-11
strategy:
max-parallel: 2

Expand Down

0 comments on commit 99c78ce

Please sign in to comment.