Add cleanup stage

This commit is contained in:
jose-rZM
2025-12-20 18:58:29 +01:00
parent 256f1073da
commit fc1a8d8ac9
2 changed files with 7 additions and 10 deletions

View File

@@ -118,13 +118,13 @@ pipeline {
} }
} }
} }
}
post { stage('Cleanup') {
always { agent any
node('principal') { steps {
cleanWs() cleanWs()
} }
} }
} }
} }

View File

@@ -78,12 +78,9 @@ pipeline {
} }
} }
stage('Cleanup') {
} agent any
steps {
post {
always {
node('principal') {
cleanWs() cleanWs()
} }
} }