Skip to content

Commit d9fb3c9

Browse files
authored
ci: macos-latest is changing to macos-14 ARM runners (#49)
* ci: macos-latest is changing to macos-14 ARM runners Committed via https://github.com/asottile/all-repos * Update ci.yml * Apply suggestions from code review * Apply suggestions from code review * Apply suggestions from code review
1 parent 1004ec2 commit d9fb3c9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
runs-on: [ubuntu-latest, macos-latest, windows-latest]
24+
runs-on: [ubuntu-latest, macos-12, windows-latest]
2525
session: [dist, test]
2626

2727
name: ${{ matrix.session }} on ${{ matrix.runs-on }}
@@ -30,10 +30,12 @@ jobs:
3030
- uses: actions/checkout@v4
3131
- uses: awvwgk/setup-fortran@main
3232
id: setup-fortran
33-
if: runner.os != 'Windows' # We aren't using this yet, and takes 4 mins to setup
33+
if: runner.os != 'Windows'
34+
# We aren't using this yet, and takes 4 mins to setup on Windows
35+
# On macOS this causes a bug to be hit on macos-13+ and CMake, gcc14 may fix
3436
with:
3537
compiler: gcc
36-
version: 11
38+
version: 12
3739
- uses: yezz123/setup-uv@v4
3840
- uses: wntrblm/nox@2024.04.15
3941
- run: nox -s ${{ matrix.session }}

0 commit comments

Comments
 (0)