fix(ci): move nightly bench inclusion sweep to 06:00 UTC - #24830
Merged
Merged
Conversation
The sweep resolves the nightly git tag + docker image for the current day and verifies the tag exists. It was scheduled at 03:30 UTC, before the Nightly Release Tag workflow (04:00 UTC) creates that tag, so "Verify source git ref" failed with "couldn't find remote ref". Align it with the other nightly consumers (spartan-bench, deploy-next-net) at 06:00 UTC.
alexghr
approved these changes
Jul 21, 2026
This was referenced Jul 21, 2026
rangozd
pushed a commit
to rangozd/aztec-packages
that referenced
this pull request
Aug 5, 2026
BEGIN_COMMIT_OVERRIDE chore(spartan): lower mainnet inactivity slash target to 70% (AztecProtocol#24827) chore: add rate-limited testnet rpc client (AztecProtocol#24836) fix(ci): move nightly bench inclusion sweep to 06:00 UTC (AztecProtocol#24830) fix(bench): handle void worker-wallet returns in inclusion sweep (AztecProtocol#24843) END_COMMIT_OVERRIDE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The Nightly Bench Inclusion Sweep (failing run) resolves the nightly git tag + docker image for the current day and verifies the tag exists:
That tag is created by the separate Nightly Release Tag workflow at
0 4 * * *(04:00 UTC), but the sweep was scheduled at30 3 * * *(03:30 UTC) — 30 min before the tag exists. GitHub's scheduled-run jitter preserves the gap (today the sweep ran at 04:38 UTC, the tag was created at 05:04 UTC), soVerify source git reffails and the downstreamcleanup/notify-failurejobs cascade.Fix
Move the sweep to
0 6 * * *(06:00 UTC), aligning it with the other nightly consumers (nightly-spartan-bench,deploy-next-net) which already run at 06:00 — a 2h margin over the 04:00 tag job.