# HG changeset patch # User Bram Moolenaar # Date 1634037303 -7200 # Node ID ca54c8a0c84712fc8014dea295537951e874bc01 # Parent 21b9e3f05c90a37bfb65f21a03362f0b3d625374 patch 8.2.3500: Github CI fails to install clang Commit: https://github.com/vim/vim/commit/3a724290c5dd8e4b7c9a1fa8941b81f6f80db00a Author: Christian Brabandt Date: Tue Oct 12 12:02:49 2021 +0100 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 https://github.com/vim/vim/issues/8993) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- 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 --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3500, +/**/ 3499, /**/ 3498,