Skip to content

Commit

Permalink
Linux.yml: use gcc 13 instead of 14
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderRichert-NOAA committed Oct 16, 2024
1 parent df80c59 commit 76b2da8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ccompiler: [clang, gcc-12, gcc-14]
ccompiler: [clang, gcc-12, gcc-13]

steps:

Expand Down Expand Up @@ -48,9 +48,9 @@ jobs:
elif [[ ${{ matrix.ccompiler }} == "gcc-12" ]]; then
export CC=gcc-12
export FC=gfortran-12
elif [[ ${{ matrix.ccompiler }} == "gcc-14" ]]; then
export CC=gcc-14
export FC=gfortran-14
elif [[ ${{ matrix.ccompiler }} == "gcc-13" ]]; then
export CC=gcc-13
export FC=gfortran-13
fi
cd bufr
mkdir build
Expand Down

0 comments on commit 76b2da8

Please sign in to comment.