Skip to content

Commit 676ab32

Browse files
committed
Temporarly switch deploy to run every two hours (instead of "every successful meta")
See #22
1 parent 80bb556 commit 676ab32

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Jenkinsfile.deploy

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ properties([
44
disableResume(),
55
durabilityHint('PERFORMANCE_OPTIMIZED'),
66
pipelineTriggers([
7-
upstream(threshold: 'UNSTABLE', upstreamProjects: 'meta'),
7+
// TODO https://github.com/docker-library/meta-scripts/issues/22
8+
//upstream(threshold: 'UNSTABLE', upstreamProjects: 'meta'),
9+
cron('H H/2 * * *'),
10+
// (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)
811
]),
912
])
1013

0 commit comments

Comments
 (0)