From 9a218da16485ff2801fd0d9b8ec5e8bd37e8135d Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 24 Oct 2024 12:41:59 +0000 Subject: [PATCH] jenkins: Run Clang Static Analyzer on Debian Trixie Signed-off-by: Michael Tremer --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2a75a3004..0f39e5b27 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { stage("Clang Static Analyzer") { agent { docker { - image "debian:bookworm-backports" + image "debian:trixie" // Run as root inside the containers to install dependencies args "-u root" @@ -23,7 +23,7 @@ pipeline { stage("Install Dependencies") { steps { script { - installBuildDepsDebian("bookworm", "clang") + installBuildDepsDebian("trixie", "clang") // Install Clang Tools sh "apt-get install -y clang-tools" -- 2.39.5