mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 21:54:40 +03: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
Notes:
sideshowbarker
2024-07-18 20:15:01 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/00e5af02be0 Pull-request: https://github.com/SerenityOS/serenity/pull/6381
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…
Reference in New Issue
Block a user