From de452a3faddde41eeacf0599bd5774a30f8e69f4 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sat, 12 Apr 2025 12:38:21 +0100 Subject: [PATCH] Correct compiler versions in CI. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 794f29cd8..e02aa05a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -442,7 +442,7 @@ jobs: run: cp -r $GITHUB_WORKSPACE/* libs/math working-directory: ../boost-root - name: Run CMake - run: cmake -DBUILD_TESTING=1 -DCMAKE_CXX_COMPILER=g++-10 . + run: cmake -DBUILD_TESTING=1 -DCMAKE_CXX_COMPILER=g++-13 . working-directory: ../boost-root/libs/math - name: Run Compile Tests run: make -j$((`nproc`+1)) @@ -482,7 +482,7 @@ jobs: run: cp -r $GITHUB_WORKSPACE/* libs/math working-directory: ../boost-root - name: Run CMake - run: cmake -DBUILD_TESTING=1 -DCMAKE_CXX_COMPILER=clang++-10 . + run: cmake -DBUILD_TESTING=1 -DCMAKE_CXX_COMPILER=clang++-19 . working-directory: ../boost-root/libs/math - name: Run Compile Tests run: make -j$((`nproc`+1))