Skip to content

Commit

Permalink
Correct RERUN_ITERATIONS param (#882)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Leonard <[email protected]>
  • Loading branch information
andrew-m-leonard authored and sophia-guo committed Jan 10, 2024
1 parent 706dcea commit 77d87ce
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -462,8 +462,9 @@ class Build {
context.booleanParam(name: 'GENERATE_JOBS', value: aqaAutoGen),
context.string(name: 'ADOPTOPENJDK_BRANCH', value: aqaBranch),
context.string(name: 'ACTIVE_NODE_TIMEOUT', value: "${buildConfig.ACTIVE_NODE_TIMEOUT}"),
context.booleanParam(name: 'DYNAMIC_COMPILE', value: DYNAMIC_COMPILE)],
context.string(name: 'RERUN_ITERATIONS', value: "${rerunIterations}"),
context.booleanParam(name: 'DYNAMIC_COMPILE', value: DYNAMIC_COMPILE),
context.string(name: 'RERUN_ITERATIONS', value: "${rerunIterations}")
],
wait: true
currentBuild.result = testJob.getResult()
context.node('worker') {
Expand Down

0 comments on commit 77d87ce

Please sign in to comment.