Skip to content

Commit 60f0bb3

Browse files
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.
2 parents 8f78952 + 69164dd commit 60f0bb3

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/nightly-bench-inclusion-sweep.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ name: Nightly Bench Inclusion Sweep
99

1010
on:
1111
schedule:
12-
- cron: "30 3 * * *"
12+
# 06:00 UTC, matching the other nightly consumers (spartan-bench, deploy-next-net).
13+
# The nightly git tag + docker image this sweep resolves are produced by the
14+
# Nightly Release Tag workflow at 04:00 UTC; running earlier races that job and
15+
# fails "Verify source git ref" with "couldn't find remote ref".
16+
- cron: "0 6 * * *"
1317
workflow_dispatch:
1418
inputs:
1519
docker_image:

0 commit comments

Comments
 (0)