From 60c94ce9860db5c9f9d58e0b907f6b78a9afb569 Mon Sep 17 00:00:00 2001 From: Cameron Smith Date: Fri, 6 Sep 2024 21:36:33 -0400 Subject: [PATCH] compiler comparison attempt --- .github/workflows/cmake.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 68116e6f0..8b4fe2a60 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -12,8 +12,8 @@ jobs: fail-fast: false matrix: compiler: - - { compiler: GNU, CC: gcc-10, CXX: g++-10 } - - { compiler: LLVM, CC: clang, CXX: clang++ } + - { compiler: "GNU", CC: gcc-10, CXX: g++-10 } + - { compiler: "LLVM", CC: clang, CXX: clang++ } build_type: [Debug, Release] steps: @@ -47,7 +47,7 @@ jobs: - name: Build User Project # only need to test with a single build config if the installed cmake config files work - if: ${{ matrix.compiler == 'GNU' && matrix.build_type == 'Release' }} + if: matrix.compiler == 'GNU' # && matrix.build_type == 'Release' #the compiler comparison is wrong env: MPICH_CXX: ${{matrix.compiler.CXX}} MPICH_CC: ${{matrix.compiler.CC}}