From: Michael Tremer Date: Mon, 18 May 2026 15:39:31 +0000 (+0000) Subject: jenkins: Don't fail if we could not upload any test artifacts X-Git-Tag: 0.0.1~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1cf0c904e687f242fc1dc2f181c553e0057f2113;p=zone-sync.git jenkins: Don't fail if we could not upload any test artifacts Signed-off-by: Michael Tremer --- diff --git a/Jenkinsfile b/Jenkinsfile index 5a151a3..34f897d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,7 +103,8 @@ pipeline { """ // Archive the logs only if the stage fails - archiveArtifacts artifacts: "tests/${DISTRO}/${COMPILER}/**/*" + archiveArtifacts artifacts: "tests/${DISTRO}/${COMPILER}/**/*", + allowEmptyArchive: true echo "The test logs have been archived" }