clean only on failed build
Gitea/subman-nextjs/pipeline/head This commit looks good Details

This commit is contained in:
andrzej 2024-10-03 18:22:14 +02:00
parent a5c6f9d3cb
commit 3b63bec700
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -28,7 +28,8 @@ agent any
cleanWs(cleanWhenNotBuilt: true,
deleteDirs: true,
disableDeferredWipeout: true,
notFailBuild: true,
// notFailBuild: true,
cleanWhenSuccess:false,
patterns: [[pattern: '**/*', type: 'INCLUDE'],
[pattern: '.propsfile', type: 'EXCLUDE']])
}