From 8b3050b2f591d68ca5add2e8c9173d144171c26e Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Thu, 27 Nov 2025 22:22:30 +0100 Subject: [PATCH 1/3] Do not run dependency update job on cron since we do not publish ORM snapshots anymore for this branch there is nothing to rebuild... Job can still be triggered manually --- ci/dependency-update/Jenkinsfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ci/dependency-update/Jenkinsfile b/ci/dependency-update/Jenkinsfile index 0dcd1cc844a..6f9a4a75122 100644 --- a/ci/dependency-update/Jenkinsfile +++ b/ci/dependency-update/Jenkinsfile @@ -97,10 +97,6 @@ String qualify(String radical) { pipeline { agent none - triggers { - // Run at least once per week, in case of snapshot updates. - cron '@weekly' - } parameters { // choice parameter doesn't have a default, but the first value should be treated as a default, if it wasn't specified manually. // Make sure tp update axis and settings() when adding new choice parameter. From ab8989ddc2c4d6cf6c83068cd710777e56fd69cc Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Thu, 27 Nov 2025 22:19:45 +0100 Subject: [PATCH 2/3] Switch main job to run with a cron trigger --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 365060a2d41..1e4f62c4dcd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -340,7 +340,9 @@ stage('Configure') { pipelineTriggers( // HSEARCH-3417: do not add snapshotDependencies() here, this was known to cause problems. [ - issueCommentTrigger('.*test this please.*') + issueCommentTrigger('.*test this please.*'), + // Run every week Sunday @ 2 AM + cron('0 2 * * 0') ] + helper.generateUpstreamTriggers() ), From 29b9cf4c3ca68e3e8d0205d550ed90fbf2e3ac7c Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Fri, 28 Nov 2025 11:00:33 +0100 Subject: [PATCH 3/3] Stop testing on EOLed JDKs --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1e4f62c4dcd..35a2b197fed 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -189,13 +189,13 @@ stage('Configure') { condition: TestCondition.AFTER_MERGE), new JdkBuildEnvironment(version: '24', testCompilerTool: 'OpenJDK 24 Latest', testLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true', - condition: TestCondition.AFTER_MERGE), + condition: TestCondition.ON_DEMAND), new JdkBuildEnvironment(version: '25', testCompilerTool: 'OpenJDK 25 Latest', testLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true', condition: TestCondition.AFTER_MERGE), new JdkBuildEnvironment(version: '26', testCompilerTool: 'OpenJDK 26 Latest', testLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true', - condition: TestCondition.AFTER_MERGE) + condition: TestCondition.ON_DEMAND) // IMPORTANT: Make sure to update the documentation for any newly supported Java versions // See java-version.main.compatible.expected.text in POMs. ],