Clean workspace after build
This commit is contained in:
parent
8e15b22912
commit
5aeb60b162
1 changed files with 10 additions and 2 deletions
12
Jenkinsfile
vendored
12
Jenkinsfile
vendored
|
@ -38,12 +38,20 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Archivage des extraits') {
|
||||
steps {
|
||||
archiveArtifacts artifacts: '**/*.osm.bz2', fingerprint: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
post {
|
||||
always {
|
||||
// Archive les artefacts .osm.bz2
|
||||
archiveArtifacts artifacts: '**/*.osm.bz2', allowEmptyArchive: true
|
||||
cleanWs(cleanWhenNotBuilt: false,
|
||||
deleteDirs: true,
|
||||
notFailBuild: true
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue