Skip to content

Commit 2124cbe

Browse files
committed
make gh runner image happy
1 parent cc8629f commit 2124cbe

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/cmake_ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ jobs:
3838
steps:
3939
- uses: actions/checkout@v4
4040

41+
- name: Unlink gcc
42+
if: runner.os == 'macOS'
43+
run: |
44+
brew unlink gcc
45+
4146
- name: Setup Cpp
4247
uses: aminya/setup-cpp@v1
4348
with:

.github/workflows/python_wheel.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ jobs:
4646

4747
- name: Install gcc and fftw
4848
run: |
49-
brew install gcc fftw
49+
brew unlink gcc
50+
brew install gcc@13 fftw
5051
cp make.inc.macosx_gcc-12 make.inc
5152
echo "FC=gfortran-13" >> make.inc
5253
echo "CC=gcc-13" >> make.inc

0 commit comments

Comments
 (0)