Skip to content

Commit

Permalink
Always clean workspace after a prtester job
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Leonard <anleonar@redhat.com>
  • Loading branch information
andrew-m-leonard committed Mar 7, 2024
1 parent 68ffc9e commit 430a914
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pipelines/build/prTester/pr_test_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ class PullRequestTestPipeline implements Serializable {
context.booleanParam(name: 'enableTestDynamicParallel', value: false), // not needed unless we enable test
context.booleanParam(name: 'enableInstallers', value: false), // never need this enabled in pr-test
context.booleanParam(name: 'useAdoptBashScripts', value: false), // should not use defaultsJson but adoptDefaultsJson
context.booleanParam(name: 'keepReleaseLogs', value: false) // never need this enabled in pr-tester
context.booleanParam(name: 'keepReleaseLogs', value: false), // never need this enabled in pr-tester
context.booleanParam(name: 'cleanWorkspaceAfterBuild', value: true) // always clean prtester workspace after the build
]
} catch (err) {
context.println "[ERROR] JDK ${actualJavaVersion} PIPELINE FAILED\n$err"
Expand Down

0 comments on commit 430a914

Please sign in to comment.