Skip to content

Commit d07cc6a

Browse files
authored
Disable JDK21 nightlies, set Weekly builds to not publish (#736)
* Disable nightly builds as they are superceded by ea Signed-off-by: Stewart X Addison <[email protected]> * Disable nightly JDK21 builds, set weeklies to not publish Signed-off-by: Stewart X Addison <[email protected]> --------- Signed-off-by: Stewart X Addison <[email protected]>
1 parent 17418f8 commit d07cc6a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pipelines/build/common/build_base_file.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,15 +760,16 @@ class Builder implements Serializable {
760760

761761
def timestamp = new Date().format('yyyy-MM-dd-HH-mm', TimeZone.getTimeZone('UTC'))
762762
def tag = "${javaToBuild}-${timestamp}"
763-
764763
if (publishName) {
765764
tag = publishName
766765
}
767766

767+
768768
context.stage('publish') {
769769
context.build job: 'build-scripts/release/refactor_openjdk_release_tool',
770770
parameters: [
771771
['$class': 'BooleanParameterValue', name: 'RELEASE', value: release],
772+
['$class': 'BooleanParameterValue', name: 'DRY_RUN', value: (isWeekly ? true : false)],
772773
context.string(name: 'TAG', value: tag),
773774
context.string(name: 'TIMESTAMP', value: timestamp),
774775
context.string(name: 'UPSTREAM_JOB_NAME', value: env.JOB_NAME),

pipelines/jobs/configurations/jdk21.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ targetConfigurations = [
3333
]
3434

3535
// 23:30 Mon, Wed, Fri
36-
triggerSchedule_nightly = 'TZ=UTC\n30 23 * * 1,3,5'
36+
// triggerSchedule_nightly = 'TZ=UTC\n30 23 * * 1,3,5'
3737
// 23:30 Sat
3838
triggerSchedule_weekly = 'TZ=UTC\n30 23 * * 6'
3939

pipelines/jobs/configurations/jdk21_evaluation.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ targetConfigurations = [
1313
// if set to empty string then it wont get triggered
1414

1515
// 23:40 Mon, Wed
16-
triggerSchedule_evaluation = 'TZ=UTC\n40 23 * * 1,3'
16+
// triggerSchedule_evaluation = 'TZ=UTC\n40 23 * * 1,3'
1717
// 23:40 Sat
1818
triggerSchedule_weekly_evaluation = 'TZ=UTC\n40 23 * * 6'
1919

0 commit comments

Comments
 (0)