From 68b79c814832946252e8273b54c6f0dddbbae993 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 1 Nov 2023 18:25:53 +0000 Subject: [PATCH] Can't use clang 13 & 14 on focal. --- .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 fe8e3170..e7bcd582 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -151,7 +151,7 @@ jobs: strategy: fail-fast: false matrix: - compiler: [ clang++-11, clang++-12, clang++-13, clang++-14 ] + compiler: [ clang++-11, clang++-12 ] steps: - uses: actions/checkout@v3 with: @@ -166,7 +166,7 @@ jobs: - name: Add repository run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test" - name: Install packages - run: sudo apt install clang-11 clang-12 clang-13 clang-14 + run: sudo apt install clang-11 clang-12 - name: Checkout main boost run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root - name: Update Dependencies