Skip to content

Commit

Permalink
ci: must also hint CXX
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed May 5, 2024
1 parent 65e18ef commit df45614
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
shared: [true, false]
gcc: [9, 10, 11, 12, 13]
mpi: [openmpi]
include:
Expand All @@ -38,10 +37,15 @@ jobs:
- os: ubuntu-latest
mpi: mpich
gcc: 13
- os: ubuntu-latest
mpi: openmpi
gcc: 13
shared: true

runs-on: ${{ matrix.os }}
env:
CC: gcc-${{ matrix.gcc }}
CXX: g++-${{ matrix.gcc }}
FC: gfortran-${{ matrix.gcc }}

steps:
Expand Down

0 comments on commit df45614

Please sign in to comment.