From 2d0582f691044a9bcc8199bc4bec0aa6979340a2 Mon Sep 17 00:00:00 2001 From: Space Meyer Date: Sat, 6 May 2023 12:18:30 +0200 Subject: dashboard: allow admins to retry individual bisections Changes to our rootfs, compilers or bisection logic regularly cause regressions in our bisection accuracy. Retrying them currently entails fiddling with the GCP datastore directly or mass deleting all failed bisections. This change will allow us to retry specific bisections with a single click. --- dashboard/dashapi/dashapi.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'dashboard/dashapi') diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index 85ac82b44..d151b1618 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -866,6 +866,7 @@ const ( ) type JobInfo struct { + JobKey string Type JobType Flags JobDoneFlags Created time.Time @@ -895,6 +896,7 @@ type JobInfo struct { Commit *Commit // for conclusive bisection Commits []*Commit // for inconclusive bisection Reported bool + InvalidatedBy string TreeOrigin bool OnMergeBase bool } -- cgit mrf-deployment