.github/workflows/ci.yml: Use clang 11 (#2233)

This commit is contained in:
Max Inden 2021-09-14 12:21:11 +02:00 committed by GitHub
parent fcb2f62752
commit 2a6a1cc0d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,7 @@ jobs:
container:
image: rust
env:
CC: clang-10
CC: clang-11
steps:
- name: Cancel Previous Runs
@ -75,7 +75,7 @@ jobs:
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
echo "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main" >> /etc/apt/sources.list
apt-get update
apt-get install -y clang-10
apt-get install -y clang-11
- name: Install CMake
run: apt-get install -y cmake