From b3e7ac46d56db977f989a059bdcb24019a94101a Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 17 Oct 2024 11:47:02 +0200 Subject: [PATCH] CI: Use GCC-10 instead of GCC-8 which is no longer available for Ubuntu-22.04. --- .github/workflows/ci.yml | 2 +- Tools/ci-run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df387c52a4e..c36cb22ceb3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -194,7 +194,7 @@ jobs: BACKEND: ${{ matrix.backend }} PYTHON_VERSION: ${{ matrix.python-version }} MACOSX_DEPLOYMENT_TARGET: "11.0" - GCC_VERSION: 9 + GCC_VERSION: 10 USE_CCACHE: 1 CCACHE_SLOPPINESS: "pch_defines,time_macros" CCACHE_COMPRESS: 1 diff --git a/Tools/ci-run.sh b/Tools/ci-run.sh index b8ba25fa6b3..c50022e0319 100644 --- a/Tools/ci-run.sh +++ b/Tools/ci-run.sh @@ -2,7 +2,7 @@ set -x -GCC_VERSION=${GCC_VERSION:=9} +GCC_VERSION=${GCC_VERSION:=10} # Set up compilers if [[ $TEST_CODE_STYLE == "1" ]]; then