Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3fc6bd3

Browse files
authored
Merge pull request #26812 from HaoZeke/fixTST
2 parents 9138d03 + e025120 commit 3fc6bd3

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/free-threaded-wheels.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@ jobs:
118118
- name: Setup macOS
119119
if: matrix.buildplat[0] == 'macos-13' || matrix.buildplat[0] == 'macos-14'
120120
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"
121126
if [[ ${{ matrix.buildplat[2] }} == 'accelerate' ]]; then
122127
# macosx_arm64 and macosx_x86_64 with accelerate
123128
# only target Sonoma onwards

.github/workflows/wheels.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,11 @@ jobs:
130130
- name: Setup macOS
131131
if: matrix.buildplat[0] == 'macos-13' || matrix.buildplat[0] == 'macos-14'
132132
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"
133138
if [[ ${{ matrix.buildplat[2] }} == 'accelerate' ]]; then
134139
# macosx_arm64 and macosx_x86_64 with accelerate
135140
# only target Sonoma onwards

0 commit comments

Comments
 (0)