From 676ab32f3fe9075dc35c4cc78962c3aa1ba065fd Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 13 Feb 2024 17:16:10 -0800 Subject: [PATCH] Temporarly switch deploy to run every two hours (instead of "every successful meta") See https://github.com/docker-library/meta-scripts/issues/22 --- Jenkinsfile.deploy | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile.deploy b/Jenkinsfile.deploy index 3d9e7d9..f71462a 100644 --- a/Jenkinsfile.deploy +++ b/Jenkinsfile.deploy @@ -4,7 +4,10 @@ properties([ disableResume(), durabilityHint('PERFORMANCE_OPTIMIZED'), pipelineTriggers([ - upstream(threshold: 'UNSTABLE', upstreamProjects: 'meta'), + // TODO https://github.com/docker-library/meta-scripts/issues/22 + //upstream(threshold: 'UNSTABLE', upstreamProjects: 'meta'), + cron('H H/2 * * *'), + // (we've dropped to only running this periodically to avoid it clogging the whole queue for a no-op, which also gives build+meta more time to cycle and get deps so they have a higher chance to all go out at once -- see the above linked issue) ]), ])