Skip to content

Commit d0d922f

Browse files
committed
update the macosx github runner
1 parent 791e602 commit d0d922f

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/build-macos.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
continue-on-error: false
2121
strategy:
2222
matrix:
23-
runner: [macos-11]
24-
compiler: [clang++, g++-11] # $(brew --prefix llvm)/bin/clang++ (clang-11)
25-
fortran_compiler: [gfortran-11]
23+
runner: [macos-14]
24+
compiler: [clang++, g++-13] # $(brew --prefix llvm)/bin/clang++ (clang-11)
25+
fortran_compiler: [gfortran-13]
2626

2727
steps:
2828
- uses: actions/checkout@v2
@@ -36,12 +36,11 @@ jobs:
3636
-D CMAKE_CXX_FLAGS="-O3 -Wall -Wextra -Wshadow -pedantic"
3737
-D CMAKE_CXX_COMPILER=${{ matrix.compiler }}
3838
-D CMAKE_Fortran_COMPILER=${{ matrix.fortran_compiler }}
39-
-D PYTHON_EXECUTABLE=/usr/local/bin/python3
4039
-D Tasmanian_ENABLE_FORTRAN=ON
4140
-D Tasmanian_ENABLE_RECOMMENDED=ON
42-
-D Tasmanian_TESTS_OMP_NUM_THREADS=4 .. &&
43-
make -j4
41+
-D Tasmanian_TESTS_OMP_NUM_THREADS=3 .. &&
42+
make -j3
4443
- name: Test
45-
run: cd build && ctest -j4 -V --no-compress-output -T Test
44+
run: cd build && ctest -V --no-compress-output -T Test
4645
- name: Install
4746
run: cd build && make install && make test_install

0 commit comments

Comments
 (0)