ci: make lesavka artifact archive tolerant when no workspace context

This commit is contained in:
Brad Stein 2026-04-12 05:25:43 -03:00
parent f760b0151c
commit 263f86c824

6
Jenkinsfile vendored
View File

@ -84,8 +84,12 @@ pipeline {
post { post {
always { always {
node { script {
try {
archiveArtifacts artifacts: 'dist/*.tar.gz', fingerprint: true, allowEmptyArchive: true archiveArtifacts artifacts: 'dist/*.tar.gz', fingerprint: true, allowEmptyArchive: true
} catch (Throwable err) {
echo "archive step unavailable: ${err.class.simpleName}"
}
} }
} }
} }