We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3839134 commit da3c576Copy full SHA for da3c576
1 file changed
.github/actions/test-extended/action.yml
@@ -20,9 +20,6 @@ runs:
20
shell: bash
21
run: |
22
brew install netcdf-fortran libevent
23
- if brew list --formula gcc &>/dev/null; then
24
- brew unlink gcc
25
- fi
26
nc-config --all
27
nf-config --all
28
@@ -32,6 +29,11 @@ runs:
32
29
compiler: gcc
33
30
version: ${{ runner.os == 'macOS' && '15' || '13' }}
34
31
+ - name: Prioritize pinned compiler on PATH (macOS)
+ if: runner.os == 'macOS'
+ shell: bash
35
+ run: echo "/usr/local/bin" >> "$GITHUB_PATH"
36
+
37
- name: Build OpenMPI (macOS)
38
if: runner.os == 'macOS'
39
0 commit comments