From 4846ee2ad784236d2d6d619c3f31608b16a1c477 Mon Sep 17 00:00:00 2001 From: Robert Scheck Date: Thu, 7 Nov 2024 21:06:12 +0100 Subject: [PATCH] ci/build: remove Ubuntu 20.04, add 24.04, use GCC 14 on 24.04 --- .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