Making Ws cleanup optional

pull/30/head
Nicolas Arenas 2025-09-15 14:34:38 +02:00
parent 89491cdf06
commit 6c25f76726
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -24,10 +24,10 @@ pipeline {
stages {
stage('Workspace cleanup (pre-build)') {
steps {
when {
when {
expression { return params.REUSE_PREV_FS == false }
}
}
steps {
// Equivalente al PreBuildCleanup del plugin ws-cleanup
cleanWs()
}