From 847d1b3ca3301300ec9e260b829b89d4f74b283a Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Tue, 6 May 2025 10:40:25 +0100 Subject: [PATCH] Remove gcc-15 as it's not supported yet. --- .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 02464641..1dca28e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - compiler: [ g++-13, g++-14, g++-15 ] + compiler: [ g++-13, g++-14 ] steps: - uses: actions/checkout@v3 with: @@ -34,7 +34,7 @@ jobs: - name: Add repository run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test" - name: Install packages - run: sudo apt install g++-13 g++-14 g++-15 + run: sudo apt install g++-13 g++-14 - name: Checkout main boost run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root - name: Update Dependencies