Jenkins CI: Unconditional clean up

This commit is contained in:
David Prevot 2022-06-28 16:03:11 +02:00
parent 14ca808658
commit 92ae8a1c7a
1 changed files with 1 additions and 6 deletions

View File

@ -39,12 +39,7 @@ pipeline {
post {
// Clean after build
always {
cleanWs(cleanWhenNotBuilt: false,
deleteDirs: true,
disableDeferredWipeout: true,
notFailBuild: true,
patterns: [[pattern: '.gitignore', type: 'INCLUDE'],
[pattern: '.propsfile', type: 'EXCLUDE']])
cleanWs()
}
}
}