From 9ad00d3caa3e609560ef8ef6e84b47dc60d4a47d Mon Sep 17 00:00:00 2001 From: Jakub Kicinski Date: Sat, 9 Nov 2024 10:43:41 -0800 Subject: [PATCH] tests: build: tools: skip building kvm The define VMX_BASIC_MEM_TYPE_WB does not seem to exist anymore. This will like get fixed during the merge window, but we don't care about KVM in the first place. Signed-off-by: Jakub Kicinski --- tests/patch/build_tools/build_tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/patch/build_tools/build_tools.sh b/tests/patch/build_tools/build_tools.sh index 9198cc0..5c08db3 100755 --- a/tests/patch/build_tools/build_tools.sh +++ b/tests/patch/build_tools/build_tools.sh @@ -32,7 +32,7 @@ echo "Now at:" git log -1 --pretty='%h ("%s")' HEAD # These are either very slow or don't build -export SKIP_TARGETS="bpf dt landlock livepatch lsm sched_ext user_events mm powerpc" +export SKIP_TARGETS="bpf dt kvm landlock livepatch lsm sched_ext user_events mm powerpc" pr "Cleaning" make O=$output_dir $build_flags -C tools/testing/selftests/ clean