Skip to content

Commit

Permalink
ci: Use 'macos-13' runs-on to continue using x86 based macOS runners (#…
Browse files Browse the repository at this point in the history
…2468)

* The 'macos-latest' `runs-on` option has been changed to
  be the Apple silicon based 'macos-14' runners. To continue
  to use the x86 based macOS runners use 'macos-13' instead.
  • Loading branch information
henryiii authored Apr 24, 2024
1 parent 64ab264 commit 3161192
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
os: [ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
include:
- os: macos-latest
# macos-latest runners are Apple silicon
- os: macos-13
python-version: '3.12'
# Apple silicon runner
- os: macos-14
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/dependencies-head.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
# macos-latest runners are Apple silicon
os: [ubuntu-latest, macos-13]
python-version: ['3.12']

steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
os: [ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
include:
- os: macos-latest
# macos-latest runners are Apple silicon
- os: macos-13
python-version: '3.12'

steps:
Expand Down

0 comments on commit 3161192

Please sign in to comment.