mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 00:07:34 +00:00
CI: Use clang-12 instead of clang-10 when building fuzzers
oss-fuzz uses clang-12 anyway, so this patch shouldn't be breaking anything, just letting us use more modern C++ without the CI being sad.
This commit is contained in:
parent
ba3bc6fef2
commit
00e5af02be
1 changed files with 8 additions and 1 deletions
9
.github/workflows/cmake.yml
vendored
9
.github/workflows/cmake.yml
vendored
|
@ -182,7 +182,14 @@ jobs:
|
|||
# === OS SETUP ===
|
||||
#
|
||||
- name: Install Ubuntu dependencies
|
||||
run: sudo apt-get install ninja-build
|
||||
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 update
|
||||
sudo apt-get install clang-12 ninja-build
|
||||
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-12 60
|
||||
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-12 60
|
||||
if: ${{ runner.os == 'Linux' }}
|
||||
- name: Install macOS dependencies
|
||||
run: brew install ninja
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue