From 02d29594626886b6a57f19b888a5fe89af04d92f Mon Sep 17 00:00:00 2001 From: Robert Scheck Date: Fri, 8 Nov 2024 08:46:04 +0100 Subject: [PATCH] ci/build: remove Ubuntu 20.04, add 24.04, use GCC 14 on 24.04 (#1210) --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5553df290..59debd26f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,11 +15,15 @@ jobs: strategy: matrix: build_type: [Release, Debug] - compiler: [gcc, clang] - os: [ubuntu-20.04, ubuntu-22.04, macos-latest] + compiler: [gcc, clang, gcc-14] + os: [ubuntu-22.04, ubuntu-24.04, macos-latest] exclude: - os: macos-latest compiler: gcc + - os: macos-latest + compiler: gcc-14 + - os: ubuntu-22.04 + compiler: gcc-14 env: CC: ${{ matrix.compiler }} CMAKE_GENERATOR: Ninja