Clean the workspace after building in the Jenkinsfile
This commit is contained in:
parent
a64805bd35
commit
435bc45bd6
|
@ -56,4 +56,9 @@ pipeline { // Multi-branch pipeline script for Yerbacon.
|
|||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
always {
|
||||
cleanWs(cleanWhenNotBuilt: false, deleteDirs: true, disableDeferredWipeout: false, notFailBuild: true, skipWhenFailed: false)
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue