Making Ws cleanup optional

pull/30/head
Nicolas Arenas 2025-09-15 12:59:12 +02:00
parent f527d33a0f
commit 89491cdf06
1 changed files with 3 additions and 0 deletions

3
Jenkinsfile vendored
View File

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