File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,11 @@ jobs:
118
118
- name : Setup macOS
119
119
if : matrix.buildplat[0] == 'macos-13' || matrix.buildplat[0] == 'macos-14'
120
120
run : |
121
+ # Needed due to https://github.com/actions/runner-images/issues/3371
122
+ # Supported versions: https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md
123
+ echo "FC=gfortran-13" >> "$GITHUB_ENV"
124
+ echo "F77=gfortran-13" >> "$GITHUB_ENV"
125
+ echo "F90=gfortran-13" >> "$GITHUB_ENV"
121
126
if [[ ${{ matrix.buildplat[2] }} == 'accelerate' ]]; then
122
127
# macosx_arm64 and macosx_x86_64 with accelerate
123
128
# only target Sonoma onwards
Original file line number Diff line number Diff line change @@ -130,6 +130,11 @@ jobs:
130
130
- name : Setup macOS
131
131
if : matrix.buildplat[0] == 'macos-13' || matrix.buildplat[0] == 'macos-14'
132
132
run : |
133
+ # Needed due to https://github.com/actions/runner-images/issues/3371
134
+ # Supported versions: https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md
135
+ echo "FC=gfortran-13" >> "$GITHUB_ENV"
136
+ echo "F77=gfortran-13" >> "$GITHUB_ENV"
137
+ echo "F90=gfortran-13" >> "$GITHUB_ENV"
133
138
if [[ ${{ matrix.buildplat[2] }} == 'accelerate' ]]; then
134
139
# macosx_arm64 and macosx_x86_64 with accelerate
135
140
# only target Sonoma onwards
You can’t perform that action at this time.
0 commit comments