From 971b0c06fab0abad5fc6706730c8a53cdf73784d Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Fri, 13 Jun 2025 10:17:35 +0200 Subject: [PATCH] Use a cron trigger instead of build throttling for nightly builds --- nightly.Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nightly.Jenkinsfile b/nightly.Jenkinsfile index 857b03a49c3b..d164ecec620e 100644 --- a/nightly.Jenkinsfile +++ b/nightly.Jenkinsfile @@ -53,7 +53,9 @@ stage('Configure') { buildDiscarder( logRotator(daysToKeepStr: '30', numToKeepStr: '10') ), - rateLimitBuilds(throttle: [count: 1, durationName: 'day', userBoost: true]), + pipelineTriggers([ + cron('H H(4-6) * * *') + ]), // If two builds are about the same branch or pull request, // the older one will be aborted when the newer one starts. disableConcurrentBuilds(abortPrevious: true),