From add09e9b0aab5daf0afced8316c9c4611012c996 Mon Sep 17 00:00:00 2001 From: Michael Tautschnig Date: Tue, 11 Jun 2024 12:35:20 +0000 Subject: [PATCH] Move GCC-13 CI job to Ubuntu 24.04 It seems that Ubuntu 22.04 no longer ships a gcc-13 package. --- .github/workflows/pull-request-checks.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pull-request-checks.yaml b/.github/workflows/pull-request-checks.yaml index c66d0327219..52d66fe102b 100644 --- a/.github/workflows/pull-request-checks.yaml +++ b/.github/workflows/pull-request-checks.yaml @@ -397,8 +397,8 @@ jobs: run: cd build; ctest . -V -L CORE -j2 # This job takes approximately 26 to 46 minutes - check-ubuntu-22_04-cmake-gcc-13: - runs-on: ubuntu-22.04 + check-ubuntu-24_04-cmake-gcc-13: + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 with: @@ -430,10 +430,10 @@ jobs: with: save-always: true path: .ccache - key: ${{ runner.os }}-22.04-Release-gcc-13-${{ github.ref }}-${{ github.sha }}-PR + key: ${{ runner.os }}-24.04-Release-gcc-13-${{ github.ref }}-${{ github.sha }}-PR restore-keys: | - ${{ runner.os }}-22.04-Release-gcc-13-${{ github.ref }} - ${{ runner.os }}-22.04-Release-gcc-13 + ${{ runner.os }}-24.04-Release-gcc-13-${{ github.ref }} + ${{ runner.os }}-24.04-Release-gcc-13 - name: ccache environment run: | echo "CCACHE_BASEDIR=$PWD" >> $GITHUB_ENV