Skip to content

Commit

Permalink
Temporarly switch deploy to run every two hours (instead of "every su…
Browse files Browse the repository at this point in the history
…ccessful meta")

See #22
  • Loading branch information
tianon committed Feb 14, 2024
1 parent 80bb556 commit 676ab32
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Jenkinsfile.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -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)
]),
])

Expand Down

0 comments on commit 676ab32

Please sign in to comment.