Skip to content

Commit

Permalink
Merge pull request #166 from llxia/test2
Browse files Browse the repository at this point in the history
Set rerunIterations to 0 for all dev test builds
  • Loading branch information
AdamBrousseau authored Jul 6, 2023
2 parents 49be2a1 + a2e67b7 commit c3684ef
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 c3684ef

Please sign in to comment.