mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
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.
This commit is contained in:
parent
943f4eb287
commit
13288d956b
1 changed files with 1 additions and 1 deletions
2
.github/workflows/cmake.yml
vendored
2
.github/workflows/cmake.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue