ci: bump nightly Clang/LLVM version to 14

CI started to fail with missing clang-13 warning. Bump the version to 14.

Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
This commit is contained in:
Andrii Nakryiko
2021-08-03 12:29:16 -07:00
committed by Andrii Nakryiko
parent 506a544834
commit f8ab8bde8e
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ travis_fold start prepare_selftests "Building selftests"
sudo apt-get -y install python-docutils # for rst2man
LLVM_VER=13
LLVM_VER=14
LIBBPF_PATH="${REPO_ROOT}"
REPO_PATH="travis-ci/vmtest/bpf-next"

View File

@@ -19,7 +19,7 @@ sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal mai
sudo apt-get update
sudo apt-get install --allow-downgrades -y libc6=2.31-0ubuntu9.2
sudo aptitude install -y g++ libelf-dev
sudo aptitude install -y clang-13 lld-13 llvm-13
sudo aptitude install -y clang-14 lld-14 llvm-14
travis_fold end install_clang