Commit 60f0bb3
authored
fix(ci): move nightly bench inclusion sweep to 06:00 UTC (#24830)
## Problem
The **Nightly Bench Inclusion Sweep** ([failing
run](https://github.com/AztecProtocol/aztec-packages/actions/runs/29801774127))
resolves the nightly git tag + docker image for the current day and
verifies the tag exists:
```
git fetch --depth 1 origin refs/tags/v6.0.0-nightly.20260721:...
fatal: couldn't find remote ref refs/tags/v6.0.0-nightly.20260721
```
That tag is created by the separate **Nightly Release Tag** workflow at
`0 4 * * *` (04:00 UTC), but the sweep was scheduled at `30 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), so `Verify source git ref` fails and the
downstream `cleanup`/`notify-failure` jobs 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.1 file changed
Lines changed: 5 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
13 | 17 | | |
14 | 18 | | |
15 | 19 | | |
| |||
0 commit comments