From 8b401094b000e5caa4712bef46f56836ad8526e6 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 4 Dec 2024 14:37:52 +0000 Subject: [PATCH] jenkins: Disable privileges for the static analyzer pass This does not need any privileges as it is only compiling Pakfire, but not executing the test suite. Signed-off-by: Michael Tremer --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 60dea3853..d002479f1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -141,7 +141,7 @@ pipeline { image "debian:trixie" // Run as root inside the containers to install dependencies - args "--privileged -u root" + args "-u root" customWorkspace "${JOB_NAME}/${BUILD_ID}/clang-static-analyzer" } -- 2.39.5