Skip to content

Commit

Permalink
Use gcc-14 for CI checks
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed May 15, 2024
1 parent 739a355 commit c828f57
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,18 +97,17 @@ jobs:
run-clang-tidy
compile:
runs-on: ubuntu-24.04
env:
CXX: g++
strategy:
matrix:
compiler:
[
{name: gcc, ver: 11},
{name: gcc, ver: 12},
{name: gcc, ver: 13},
{name: gcc, ver: 14},
{name: nvc++, ver: '24.3'},
{os: ubuntu-24.04, name: gcc, ver: 11},
{os: ubuntu-24.04, name: gcc, ver: 12},
{os: ubuntu-24.04, name: gcc, ver: 13},
{os: ubuntu-24.04, name: gcc, ver: 14},
{os: ubuntu-22.04, name: nvc++, ver: '24.3'},
]
mpi: [ON, OFF]
openmp: [ON, OFF]
Expand All @@ -118,6 +117,7 @@ jobs:
stdpar: ON
fail-fast: false

runs-on: ${{ matrix.compiler.os }}
name: ${{ matrix.compiler.name }} ${{ matrix.compiler.ver }}${{ matrix.mpi == 'ON' && ' MPI' || ''}}${{ matrix.openmp == 'ON' && ' OpenMP' || ''}}${{ matrix.stdpar == 'ON' && ' stdpar' || ''}}
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
# sudo add-apt-repository multiverse
sudo apt-get update
- name: Install gcc-13
- name: Install gcc-14
if: always()
uses: fortran-lang/setup-fortran@v1
with:
compiler: gcc
version: 13
version: 14

- name: install gsl and openmpi
run: |
Expand Down

0 comments on commit c828f57

Please sign in to comment.