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 {
|
post {
|
||||||
always {
|
always {
|
||||||
// Archive les artefacts .osm.bz2
|
cleanWs(cleanWhenNotBuilt: false,
|
||||||
archiveArtifacts artifacts: '**/*.osm.bz2', allowEmptyArchive: true
|
deleteDirs: true,
|
||||||
|
notFailBuild: true
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue