Skip to content

Commit

Permalink
CI: use macos-latest
Browse files Browse the repository at this point in the history
12 is deprecated and Homebrew seems to have stopped shipping bottles,
slowing down CI massively.

It seems the difference between x86 and arm64 is the addition of
-large to runs-on.

Signed-off-by: Rosen Penev <[email protected]>
  • Loading branch information
neheb committed Nov 13, 2024
1 parent 4b1b345 commit 8327da9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
MacOS:
if: github.event_name != 'schedule' || github.repository == 'mesonbuild/wrapdb'
runs-on: ${{ matrix.platform == 'arm64' && 'macos-14' || 'macos-12' }}
runs-on: ${{ matrix.platform == 'arm64' && 'macos-latest' || 'macos-latest-large' }}
env:
TEST_BUILD_ALL: 1
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanity_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
python tools/sanity_checks.py
MacOS:
runs-on: ${{ matrix.platform == 'arm64' && 'macos-14' || 'macos-12' }}
runs-on: ${{ matrix.platform == 'arm64' && 'macos-latest' || 'macos-latest-large' }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 8327da9

Please sign in to comment.