From 90738ed25a11d73b8299e02d5193967cb0ea8f45 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 4 Dec 2024 17:34:50 +0000 Subject: [PATCH] jenkins: Try to master the Debian repository without a Docker container Signed-off-by: Michael Tremer --- Jenkinsfile | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e90fa61c2..6b4eb714f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -411,22 +411,9 @@ pipeline { } stage("Master Debian Repository") { - agent { - docker { - image "debian:trixie" - - // Run as root inside the containers to install dependencies - args "--privileged -u root" - - customWorkspace "${JOB_NAME}/${BUILD_ID}/update-debian-repo" - } - } + agent any steps { - // Install dependencies - sh "apt-get update" - sh "apt-get install -y apt-utils" - // Unstash all stashed packages from the matrix build script { for (distro in ["trixie", "bookworm"]) { @@ -458,13 +445,6 @@ pipeline { // XXX This needs to be published on a mirror server somewhere } - - // Cleanup the workspace afterwards - post { - always { - cleanWs() - } - } } } } -- 2.39.5