We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc8629f commit 2124cbeCopy full SHA for 2124cbe
.github/workflows/cmake_ci.yml
@@ -38,6 +38,11 @@ jobs:
38
steps:
39
- uses: actions/checkout@v4
40
41
+ - name: Unlink gcc
42
+ if: runner.os == 'macOS'
43
+ run: |
44
+ brew unlink gcc
45
+
46
- name: Setup Cpp
47
uses: aminya/setup-cpp@v1
48
with:
.github/workflows/python_wheel.yml
@@ -46,7 +46,8 @@ jobs:
- name: Install gcc and fftw
run: |
49
- brew install gcc fftw
50
+ brew install gcc@13 fftw
51
cp make.inc.macosx_gcc-12 make.inc
52
echo "FC=gfortran-13" >> make.inc
53
echo "CC=gcc-13" >> make.inc
0 commit comments