From e94687df2ebceecb39fd149dac22ce4363523df9 Mon Sep 17 00:00:00 2001 From: Thomas Hahn Date: Mon, 30 Sep 2024 15:01:05 -0400 Subject: [PATCH] [ghactions] Remove symlinks to gcc compilers --- .github/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b3b7d7b..d021188 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: include: - {os: ubuntu-24.04, cc: gcc, cxx: g++} - {os: ubuntu-24.04, cc: clang, cxx: clang++} - - {os: macos-14, cc: gcc, cxx: g++} + - {os: macos-14, cc: gcc-14, cxx: g++-14} - {os: macos-14, cc: clang, cxx: clang++} runs-on: ${{ matrix.os }} @@ -85,8 +85,6 @@ jobs: run: | brew update brew install ccache gcc llvm boost fftw hdf5 open-mpi openblas - ln -s $(brew --prefix gcc)/bin/g++-* $(brew --prefix gcc)/bin/g++ - ln -s $(brew --prefix gcc)/bin/gcc-* $(brew --prefix gcc)/bin/gcc mkdir $HOME/.venv python3 -m venv $HOME/.venv/my_python source $HOME/.venv/my_python/bin/activate