There is a single step to be used whenever workspace is allocated.
Examples:
job("foo") {
wrappers {
preBuildCleanup { // Clean before build
includePattern('**/target/**')
deleteDirectories()
cleanupParameter('CLEANUP')
}
}
publishers {
cleanWs { // Clean after build
cleanWhenAborted(true)
cleanWhenFailure(true)
cleanWhenNotBuilt(false)
cleanWhenSuccess(true)
cleanWhenUnstable(true)
deleteDirs(true)
notFailBuild(true)
disableDeferredWipeout(true)
patterns {
pattern {
type('EXCLUDE')
pattern('.propsfile')
}
pattern {
type('INCLUDE')
pattern('.gitignore')
}
}
}
}
}
Examples:
pipeline {
agent any
options {
skipDefaultCheckout(true)
}
stages {
stage('Build') {
steps {
// Clean before build
preBuildCleanWs(cleanupParameter: 'CLEANUP',
deleteDirs: true,
patterns: [[pattern: '**/target/**', type: 'INCLUDE']]) {
checkout scm
echo "Building ${env.JOB_NAME}..."
}
}
}
}
post {
// Clean after build
always {
cleanWs(cleanWhenNotBuilt: false,
deleteDirs: true,
disableDeferredWipeout: true,
notFailBuild: true,
patterns: [[pattern: '.gitignore', type: 'INCLUDE'], [pattern: '.propsfile', type: 'EXCLUDE']])
}
}
}
The plugin provides a build wrapper (Delete workspace before build starts) and a post build step (Delete workspace when build is done). These steps will allow you to configure which files will be deleted and in what circumstances. The post build step can also take the build status into account.
Files to be deleted are specified by pattern using Ant syntax. In select box you can choose if the pattern is include pattern (if the file matches this pattern, file will be removed) or exclude pattern (if file matches this pattern, file won't be removed). If there is only exclude pattern, as include pattern will be used "*/", i.e. delete everything, which means that everything will be deleted except files matching exclude pattern. Patterns are applied only on files. If you want to apply them also on directories, check checkbox. Please note, that directory is deleted with all content, so if the directory matches include pattern, everything in this dir will be deleted no matter if some files in this dir matches exclude pattern. For detail see javadoc
When whole workspace is supposed to be deleted (no patterns, external commands, etc.), the plugin delegate to the Resource Disposer Plugin to speed things up.
When deferred wipeout is disabled the old implementation of filesystem content deletion is used. If you want the same behavior as with deferred wipeout, you have to set plugin attribute deleteDirs to true as well. In pipeline job's script, you can do that like:
cleanWs disableDeferredWipeout: true, deleteDirs: true
For developers of (cloud, for instance) it might be useful to be sure deferred wipeout is never selected as a cleanup method. Therefore there is a new feature introduced to do this, implemented via regular NodeProperty which you can attach to any node via UI or via script like:
Node.getNodeProperties().add(new DisableDeferredWipeoutNodeProperty());