From 02035cd1936dc691664aaed09fe17b53b45bd547 Mon Sep 17 00:00:00 2001 From: Ihor Solodrai Date: Tue, 2 Jun 2026 17:31:26 -0700 Subject: [PATCH] install-dependencies.sh: Bump default LLVM to 22 Signed-off-by: Ihor Solodrai --- install-dependencies.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install-dependencies.sh b/install-dependencies.sh index 4d6229c..2c96f1d 100755 --- a/install-dependencies.sh +++ b/install-dependencies.sh @@ -9,10 +9,11 @@ export DEPS=${1:-"all"} # "build", "run" or "all" export LIBBPF_CI_TAG=${LIBBPF_CI_TAG:-"v4"} export RUNNER_VERSION=${RUNNER_VERSION:-2.331.0} -# These should correspond to https://github.com/kernel-patches/vmtest/blob/master/.github/scripts/matrix.py#L20-L21 +# These should correspond to the DEFAULT_GCC_VERSION / DEFAULT_LLVM_VERSION in +# https://github.com/kernel-patches/vmtest/blob/master/.github/scripts/matrix.py # Otherwise there is no point in caching the dependencies in the image export GCC_VERSION=${GCC_VERSION:-15} -export LLVM_VERSION=${LLVM_VERSION:-21} +export LLVM_VERSION=${LLVM_VERSION:-22} scratch=$(mktemp -d) cd $scratch