From: Michael Tremer Date: Tue, 30 Sep 2025 08:36:09 +0000 (+0000) Subject: jenkins: Don't fail if the static analyzer didn't find any issues X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69b8625a548c0c18151e79dd63d8bfb4edfc2054;p=telemetry.git jenkins: Don't fail if the static analyzer didn't find any issues Signed-off-by: Michael Tremer --- diff --git a/Jenkinsfile b/Jenkinsfile index a69e98c..a26529e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -173,7 +173,8 @@ pipeline { stage("Publish Report") { steps { - archiveArtifacts artifacts: "scan-build-output/**/*" + archiveArtifacts artifacts: "scan-build-output/**/*", \ + allowEmptyArchive: true } } }