From 76b2da8402b9f1a3ce9bf739b73abc8e9f6cfe8b Mon Sep 17 00:00:00 2001 From: Alex Richert Date: Tue, 15 Oct 2024 18:43:37 -0700 Subject: [PATCH] Linux.yml: use gcc 13 instead of 14 --- .github/workflows/Linux.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Linux.yml b/.github/workflows/Linux.yml index 3de615a0..ab708ada 100644 --- a/.github/workflows/Linux.yml +++ b/.github/workflows/Linux.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ccompiler: [clang, gcc-12, gcc-14] + ccompiler: [clang, gcc-12, gcc-13] steps: @@ -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