Clean workspace after build

This commit is contained in:
Charles P. 2024-09-24 17:38:41 +02:00
parent 8e15b22912
commit 5aeb60b162
Signed by untrusted user who does not match committer: aeris
GPG key ID: 1708D5CC4095E76B

12
Jenkinsfile vendored
View file

@ -38,12 +38,20 @@ pipeline {
} }
} }
} }
stage('Archivage des extraits') {
steps {
archiveArtifacts artifacts: '**/*.osm.bz2', fingerprint: true
}
}
} }
post { post {
always { always {
// Archive les artefacts .osm.bz2 cleanWs(cleanWhenNotBuilt: false,
archiveArtifacts artifacts: '**/*.osm.bz2', allowEmptyArchive: true deleteDirs: true,
notFailBuild: true
)
} }
} }
} }