From: Michael Tremer Date: Tue, 19 May 2026 09:37:05 +0000 (+0000) Subject: jenkins: Don't fail if the static analyzer didn't find any problems X-Git-Tag: 0.0.1~3 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=9bf051ac9050436cdb9acef2f7ddf5730874d388;p=zone-sync.git jenkins: Don't fail if the static analyzer didn't find any problems Signed-off-by: Michael Tremer --- diff --git a/Jenkinsfile b/Jenkinsfile index 0cfb108..b54f7c8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -167,7 +167,8 @@ pipeline { stage("Publish Report") { steps { - archiveArtifacts artifacts: "scan-build-output/**/*" + archiveArtifacts artifacts: "scan-build-output/**/*", + allowEmptyArchive: true } } }