Skip to content

Commit 44151ab

Browse files
authored
Merge pull request #57 from zivy/updateMacosRunner
Changing runner macos intel runner to macos-15-intel.
2 parents 0efa493 + 8d22e8d commit 44151ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
needs: lint
4444
strategy:
4545
matrix:
46-
# using macos-13, last available intel architecture. macos-latest is arm64 architecture.
47-
os: [ubuntu-latest, windows-latest, macos-latest, macos-13]
46+
# using macos-15-intel, last available intel architecture. macos-latest is arm64 architecture.
47+
os: [ubuntu-latest, windows-latest, macos-latest, macos-15-intel]
4848
inputs: ["00_ or 01_ or 02_ or 03_ or 04_ or 05_", "06_ or 07_ or 08_ or 09_ or 10_"]
4949
runs-on: ${{ matrix.os }}
5050
steps:
@@ -85,7 +85,7 @@ jobs:
8585
env:
8686
SIMPLE_ITK_MEMORY_CONSTRAINED_ENVIRONMENT: 1
8787
run: | # pyenchant has a problem locating libenchant on macOS-ARM64. setting this environment variable resolves the issue
88-
if [ "$RUNNER_OS" == "macOS" ] && [ "${{ matrix.os }}" != "macos-13" ]; then
88+
if [ "$RUNNER_OS" == "macOS" ] && [ "${{ matrix.os }}" != "macos-15-intel" ]; then
8989
export PYENCHANT_LIBRARY_PATH=/opt/homebrew/lib/libenchant-2.dylib
9090
fi
9191
pytest -v --tb=short -k "${{matrix.inputs}}" tests/test_notebooks.py::Test_notebooks::test_python_notebook

0 commit comments

Comments
 (0)