Skip to content

Commit 9af5ef5

Browse files
committed
Update
1 parent 7dd92d1 commit 9af5ef5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test-fortran.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
- run: |
2727
cmake -E make_directory ${{runner.workspace}}/build
2828
cd ${{runner.workspace}}
29-
cmake $GITHUB_WORKSPACE -DFORTRAN=ON
29+
if [[ "${{ matrix.os }}" == "macos-15-intel" ]]; then
30+
cmake $GITHUB_WORKSPACE -DFORTRAN=ON -DCMAKE_Fortran_COMPILER=gfortran-14
31+
else
32+
cmake $GITHUB_WORKSPACE -DFORTRAN=ON
33+
fi
3034
cmake --build . --parallel
3135
./bin/fortrantest

0 commit comments

Comments
 (0)