From 3751e7e65512e24819520d0101b86745cc725f15 Mon Sep 17 00:00:00 2001 From: Vladislav Shchapov Date: Thu, 5 Sep 2024 00:18:23 +0500 Subject: [PATCH] Switch to gcc-13 for C++23 tests Signed-off-by: Vladislav Shchapov --- .github/workflows/linux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index e168d71d3f17..b57814b48601 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -55,10 +55,10 @@ jobs: std: 20 cxxflags: -stdlib=libc++ install: sudo apt install libc++-11-dev libc++abi-11-dev - - cxx: g++-11 + - cxx: g++-13 build_type: Release std: 23 - install: sudo apt install g++-11 + install: sudo apt install g++-13 shared: -DBUILD_SHARED_LIBS=ON steps: @@ -77,7 +77,7 @@ jobs: - name: Add repositories for newer GCC run: | sudo apt-add-repository ppa:ubuntu-toolchain-r/test - if: ${{ matrix.cxx == 'g++-11' }} + if: ${{ matrix.cxx == 'g++-11' || matrix.cxx == 'g++-13' }} - name: Add Ubuntu mirrors run: |