From cbcb1bf39de2cd7205447af9a64442402fbdc6f2 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Tue, 11 Oct 2022 14:07:10 +0100 Subject: [PATCH] CI: restrict compression threading On large systems, using all of the CPUs and 50% of the RAM when xz compressing packages is actively harmful because it will happily use up to that limit. Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- ci/base.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/base.yml b/ci/base.yml index 3f644c1e..3619b8f2 100644 --- a/ci/base.yml +++ b/ci/base.yml @@ -30,6 +30,9 @@ local_conf_header: CONF_VERSION = "2" BB_NUMBER_THREADS = "16" PARALLEL_MAKE = "-j16" + XZ_MEMLIMIT = "25%" + XZ_THREADS = "16" + ZSTD_THREADS = "16" LICENSE_FLAGS_ACCEPTED += "Arm-FVP-EULA" setup: | PACKAGE_CLASSES = "package_ipk"