Skip to content

Commit

Permalink
Stop using isWeekly
Browse files Browse the repository at this point in the history
  • Loading branch information
sxa committed Jun 26, 2023
1 parent cb939f6 commit cc290c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipelines/build/common/build_base_file.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ class Builder implements Serializable {
context.build job: 'build-scripts/release/refactor_openjdk_release_tool',
parameters: [
['$class': 'BooleanParameterValue', name: 'RELEASE', value: release],
['$class': 'BooleanParameterValue', name: 'DRY_RUN', value: (isWeekly ? true : false)],
['$class': 'BooleanParameterValue', name: 'DRY_RUN', value: ((releaseType=="Weekly") ? true : false)],
context.string(name: 'TAG', value: tag),
context.string(name: 'TIMESTAMP', value: timestamp),
context.string(name: 'UPSTREAM_JOB_NAME', value: env.JOB_NAME),
Expand Down

0 comments on commit cc290c7

Please sign in to comment.