From d0292a4efd1a3994e61354d96042a6b301445e58 Mon Sep 17 00:00:00 2001 From: Akuli Date: Tue, 14 Jan 2025 15:07:26 +0200 Subject: [PATCH] drop 11 --- .github/workflows/linux.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 48b079ce..18d65f04 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - llvm-version: [11, 13, 14, 15] + llvm-version: [13, 14, 15] # Testing all levels because there was a bug that only happened with -O1. (#224) opt-level: ['-O0', '-O1', '-O2', '-O3'] steps: @@ -70,9 +70,7 @@ jobs: steps: - uses: actions/checkout@v3 - run: sudo apt update - - run: sudo apt install -y llvm-{11,13,14,15}-dev clang-{11,13,14,15} make - - run: LLVM_CONFIG=llvm-config-11 ./doctest.sh - - run: make clean + - run: sudo apt install -y llvm-{13,14,15}-dev clang-{13,14,15} make - run: LLVM_CONFIG=llvm-config-13 ./doctest.sh - run: make clean - run: LLVM_CONFIG=llvm-config-14 ./doctest.sh