Skip to content

Commit

Permalink
Set rerunIterations to 0 for all dev test builds
Browse files Browse the repository at this point in the history
Signed-off-by: Lan Xia <[email protected]>
  • Loading branch information
llxia committed Jul 6, 2023
1 parent 49be2a1 commit a2e67b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,9 @@ class Build {
} else if ("${testType}".contains('jck')) {
// Keep test reportdir always for JUnit targets
keep_test_reportdir = true
} else if ("${testType}".contains('dev')) {
}

if ("${testType}".contains('dev')) {
rerunIterations = '0'
}

Expand Down

0 comments on commit a2e67b7

Please sign in to comment.