Skip to content
Snippets Groups Projects
Commit aba4cbfa authored by Carsten Lemmen's avatar Carsten Lemmen
Browse files

Install gcc on macos

parent b28edb0e
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,13 @@ jobs:
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Install gfortran on macOS
if: matrix.os == 'macos-latest' && matrix.f_compiler == 'gfortran' || matrix.os == 'macos-latest' && matrix.c_compiler == 'gcc'
run: |
brew install gcc
echo "Using Homebrew-installed gfortran:"
gfortran --version
- name: CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment