Skip to content

Commit 5e6ac75

Browse files
committed
Fix: MacOS by pinning to MacOS-11 runner.
1 parent d1d1b49 commit 5e6ac75

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
os: [ubuntu-latest, macos-latest, windows-latest]
24+
os: [ubuntu-latest, macos-11, windows-latest]
2525
gcc_v: [9] # Version of GFortran we want to use.
2626
include:
2727
- os: ubuntu-latest
2828
os-arch: linux-x86_64
2929
release-flags: --flag '--static -g -fbacktrace -O3'
3030

31-
- os: macos-latest
31+
- os: macos-11
3232
os-arch: macos-x86_64
3333
release-flags: --flag '-g -fbacktrace -O3'
3434

@@ -48,7 +48,6 @@ jobs:
4848
- name: Install GFortran macOS
4949
if: contains(matrix.os, 'macos')
5050
run: |
51-
brew install gcc@${GCC_V}
5251
ln -s /usr/local/bin/gfortran-${GCC_V} /usr/local/bin/gfortran
5352
which gfortran-${GCC_V}
5453
which gfortran

0 commit comments

Comments
 (0)