From 4c1b34ac69660ae13431f908468b9dead65b96d7 Mon Sep 17 00:00:00 2001 From: "Kurt A. O'Hearn" <1138669+ohearnk@users.noreply.github.com> Date: Fri, 21 Feb 2025 10:56:01 -0500 Subject: [PATCH] Debug. --- .github/workflows/build_test_mpi.yml | 3 +++ .github/workflows/build_test_serial.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/build_test_mpi.yml b/.github/workflows/build_test_mpi.yml index a0ea5a7a..1eae68fe 100644 --- a/.github/workflows/build_test_mpi.yml +++ b/.github/workflows/build_test_mpi.yml @@ -255,6 +255,9 @@ jobs: if: runner.os == 'macOS' run: | brew install ${{ matrix.compiler-install }} cmake open-mpi + which ${{ matrix.c-compiler }}-${{ matrix.c-version }} + which ${{ matrix.cxx-compiler }}-${{ matrix.cxx-version }} + which ${{ matrix.fortran-compiler }}-${{ matrix.compiler-version }} if [[ ${{ matrix.compiler-type }} == 'GNU' || ${{ matrix.compiler-type }} == 'CLANG' ]]; then sudo ln -Fs /usr/local/bin/${{ matrix.c-compiler }}-${{ matrix.compiler-version }} /usr/local/bin/${{ matrix.c-compiler }} sudo ln -Fs /usr/local/bin/${{ matrix.cxx-compiler }}-${{ matrix.compiler-version }} /usr/local/bin/${{ matrix.cxx-compiler }} diff --git a/.github/workflows/build_test_serial.yml b/.github/workflows/build_test_serial.yml index d5bfe3de..90a4530c 100644 --- a/.github/workflows/build_test_serial.yml +++ b/.github/workflows/build_test_serial.yml @@ -249,6 +249,9 @@ jobs: if: runner.os == 'macOS' run: | brew install ${{ matrix.compiler-install }} cmake parallel + which ${{ matrix.c-compiler }}-${{ matrix.c-version }} + which ${{ matrix.cxx-compiler }}-${{ matrix.cxx-version }} + which ${{ matrix.fortran-compiler }}-${{ matrix.compiler-version }} if [[ ${{ matrix.compiler-type }} == 'GNU' || ${{ matrix.compiler-type }} == 'CLANG' ]]; then sudo ln -Fs /usr/local/bin/${{ matrix.c-compiler }}-${{ matrix.compiler-version }} /usr/local/bin/${{ matrix.c-compiler }} sudo ln -Fs /usr/local/bin/${{ matrix.cxx-compiler }}-${{ matrix.compiler-version }} /usr/local/bin/${{ matrix.cxx-compiler }}