ci: reprocess workflow to redeploy a run's results under an explicit date - #144
Merged
Conversation
vltops
approved these changes
Aug 13, 2026
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.
Adds a dispatch-only
reprocess.ymlworkflow that re-runs process + deploy from an existing benchmark run's artifacts and writes the output to an explicit date folder, plus a one-lineBENCH_DATEoverride inprocess-results.sh(defaults to today, so normal runs are unaffected).Motivation: tonight's full run (31644732609) executed entirely on 2026-08-12 but its process step started at 23:59:45 UTC and date-stamped the output 2026-08-13, leaving the day's regression data in place on the charts. Hand-fixing gh-pages data turned out to be error-prone because each date folder mixes measurement copies with generator-derived files (chart-data.json has four sections, and the history chart reads one of them) — a partial hand-merge left stale derived data twice. This workflow makes the correction reproducible: same artifacts, same generator, CI-authored commit, full paper trail in Actions.
Usage:
gh workflow run reprocess.yml -f run-id=<benchmark run id> -f date=<YYYY-MM-DD>. The date must be the calendar day the run's benchmark jobs executed; artifacts are retained 7 days so this only works on recent runs. The deploy uses the samekeep_filespublish as the daily run, so the target date folder's files are wholesale overwritten with single-provenance output.Immediate plan after merge: rewrite gh-pages to drop the three hand-fix commits (dc5f3dc, abc9f73, 27ec2d0), then dispatch with run-id=31644732609 date=2026-08-12 so the evening run's complete results replace the morning's regression data with pipeline provenance.