From 77372c5a4becdd26463526d2b247b944d5f4eb44 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Wed, 4 Dec 2024 09:45:29 +0100 Subject: [PATCH] GHA: Update latest Clang & GCC versions --- .github/workflows/unit-tests.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index b07f7e1a9..73fd28b8c 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -107,12 +107,11 @@ jobs: - { compiler: gcc-11, os: ubuntu-22.04, type: RelWithDebInfo, cmake: 3.22.1, boost: 1.74.0 } # # Latest Compilers - # GCC 12 needs boost 1.82 to compile correctly + # Use default boost # Use (compiler) default C++ 17 standard # Use default cmake - - { compiler: gcc-12, os: ubuntu-22.04, type: Debug, boost: 1.82.0 } - # Use default boost - - { compiler: clang-16, os: ubuntu-20.04, type: Debug, externalSanitizer: true } + - { compiler: gcc-14, os: ubuntu-24.04, type: Debug } + - { compiler: clang-18, os: ubuntu-24.04, type: Debug, externalSanitizer: true } runs-on: ${{matrix.os}}