diff options
author | Linus Groh <mail@linusgroh.de> | 2021-05-20 23:01:09 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-05-21 00:15:14 +0100 |
commit | 13288d956b0aef0427acffcaa6019a30f089fa6d (patch) | |
tree | 76165d598958d7b649f77d461740e68ff8630dd6 /.github/workflows | |
parent | 943f4eb28791b82b311ce864aa1658fb26105f46 (diff) | |
download | serenity-13288d956b0aef0427acffcaa6019a30f089fa6d.zip |
CI: Also apt-get purge clang-11 in build_and_test_lagom step
We don't need it. A recent change to the ubuntu-20.04 image has made it
the default, causing builds to fail - we're installing and want to use
clang-12 anyway, so let's just get rid of the other installed versions.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/cmake.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index dfef0bdbb0..b32b24807b 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -185,7 +185,7 @@ jobs: run: | wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main" - sudo apt-get purge -y clang-10 + sudo apt-get purge -y clang-10 clang-11 sudo apt-get update sudo apt-get install clang-12 ninja-build sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-12 60 |