We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b9812a commit 6e496aeCopy full SHA for 6e496ae
1 file changed
.github/actions/test-extended/action.yml
@@ -20,6 +20,13 @@ runs:
20
shell: bash
21
run: |
22
brew install netcdf-fortran libevent
23
+ # netcdf-fortran pulls in Homebrew's unversioned (latest) gcc as a
24
+ # dependency, symlinking an unpinned gfortran/gcc/g++ into
25
+ # /opt/homebrew/bin, which precedes /usr/local/bin on PATH and would
26
+ # otherwise shadow the version setup-fortran pins below.
27
+ if brew list --formula gcc &>/dev/null; then
28
+ brew unlink gcc
29
+ fi
30
nc-config --all
31
nf-config --all
32
0 commit comments