From: Christian Brabandt Date: Tue, 12 Oct 2021 11:02:49 +0000 (+0100) Subject: patch 8.2.3500: Github CI fails to install clang X-Git-Tag: v8.2.3500 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a724290c5dd8e4b7c9a1fa8941b81f6f80db00a;p=vim 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) --- 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, /**/