From: Michael Tremer Date: Wed, 4 Dec 2024 14:32:51 +0000 (+0000) Subject: jenkins: Always cleanup all workspaces after we are don X-Git-Tag: 0.9.30~768 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=989550cf63f9b63d7abb9e8513e1a7954b1df99d;p=pakfire.git jenkins: Always cleanup all workspaces after we are don Signed-off-by: Michael Tremer --- diff --git a/Jenkinsfile b/Jenkinsfile index b5827429f..917e14b52 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -110,6 +110,13 @@ pipeline { } } } + + // Cleanup the workspace afterwards + post { + always { + cleanWs() + } + } } } @@ -161,6 +168,13 @@ pipeline { } } } + + // Cleanup the workspace afterwards + post { + always { + cleanWs() + } + } } stage("LCOV") { @@ -235,6 +249,13 @@ pipeline { } } } + + // Cleanup the workspace afterwards + post { + always { + cleanWs() + } + } } } } @@ -380,6 +401,13 @@ pipeline { } } } + + // Cleanup the workspace afterwards + post { + always { + cleanWs() + } + } } } @@ -431,6 +459,13 @@ pipeline { // XXX This needs to be published on a mirror server somewhere } + + // Cleanup the workspace afterwards + post { + always { + cleanWs() + } + } } } }