diff options
author | Christian Brabandt <cb@256bit.org> | 2021-10-12 12:02:49 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-10-12 12:02:49 +0100 |
commit | 3a724290c5dd8e4b7c9a1fa8941b81f6f80db00a (patch) | |
tree | ed11b219e3a28907a07c943633bd3394e1e7f9d7 /.github | |
parent | 3d031a0ae791f901c0c2dedd5d8b9de137c23acc (diff) | |
download | vim-git-3a724290c5dd8e4b7c9a1fa8941b81f6f80db00a.tar.gz |
patch 8.2.3500: Github CI fails to install clangv8.2.3500
Problem: Github CI fails to install clang.
Solution: Install llvm-11 explicitly. (Christian Brabandt, closes #8993)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |