Skip to content

Commit

Permalink
compiler comparison attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
cwsmith committed Sep 7, 2024
1 parent 10de843 commit 60c94ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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}}
Expand Down

0 comments on commit 60c94ce

Please sign in to comment.