From 3add5cbaa8033b25f48f31204dc524003b61cdc0 Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Wed, 8 Nov 2023 12:08:49 -0700 Subject: [PATCH] ci: Slim up LLVM build We only care about the tools that allow us to build a kernel. By default, we build and install the 'all' target but we can get away with the 'distribution' target, which will include everything that we need. Signed-off-by: Nathan Chancellor --- ci.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci.sh b/ci.sh index 1031a368..f403d081 100755 --- a/ci.sh +++ b/ci.sh @@ -95,8 +95,10 @@ function do_llvm() { "$base"/build-llvm.py \ --assertions \ --build-stage1-only \ + --build-target distribution \ --check-targets clang lld llvm \ --install-folder "$install" \ + --install-target distribution \ --projects clang lld \ --quiet-cmake \ --ref release/17.x \