From 2a6a1cc0d3eee6d2eae2ff1e9b78828fbe04b02d Mon Sep 17 00:00:00 2001 From: Max Inden Date: Tue, 14 Sep 2021 12:21:11 +0200 Subject: [PATCH] .github/workflows/ci.yml: Use clang 11 (#2233) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dff2d46..544f844e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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