From 3a724290c5dd8e4b7c9a1fa8941b81f6f80db00a Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Tue, 12 Oct 2021 12:02:49 +0100 Subject: [PATCH] patch 8.2.3500: Github CI fails to install clang Problem: Github CI fails to install clang. Solution: Install llvm-11 explicitly. (Christian Brabandt, closes #8993) --- .github/workflows/ci.yml | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bfcc79e9..99223229f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,7 +81,7 @@ jobs: wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - . /etc/lsb-release sudo add-apt-repository -y "deb http://apt.llvm.org/${DISTRIB_CODENAME}/ llvm-toolchain-${DISTRIB_CODENAME}-11 main" - sudo apt-get install -y clang-11 + sudo apt-get install -y clang-11 llvm-11 sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-11 100 sudo update-alternatives --set clang /usr/bin/clang-11 sudo update-alternatives --install /usr/bin/llvm-cov llvm-cov /usr/bin/llvm-cov-11 100 diff --git a/src/version.c b/src/version.c index 8497e7d56..e09abfa22 100644 --- a/src/version.c +++ b/src/version.c @@ -757,6 +757,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3500, /**/ 3499, /**/ -- 2.50.1