aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/dashapi/dashapi.go
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/dashapi/dashapi.go')
-rw-r--r--dashboard/dashapi/dashapi.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go
index 6419894d2..4d5df7e9a 100644
--- a/dashboard/dashapi/dashapi.go
+++ b/dashboard/dashapi/dashapi.go
@@ -219,10 +219,11 @@ const (
type JobDoneFlags int64
const (
- BisectResultMerge JobDoneFlags = 1 << iota // bisected to a merge commit
- BisectResultNoop // commit does not affect resulting kernel binary
- BisectResultRelease // commit is a kernel release
- BisectResultIgnore // this particular commit should be ignored, see syz-ci/jobs.go
+ BisectResultMerge JobDoneFlags = 1 << iota // bisected to a merge commit
+ BisectResultNoop // commit does not affect resulting kernel binary
+ BisectResultRelease // commit is a kernel release
+ BisectResultIgnore // this particular commit should be ignored, see syz-ci/jobs.go
+ BisectResultInfraError // the bisect failed due to an infrastructure problem
)
func (dash *Dashboard) JobPoll(req *JobPollReq) (*JobPollResp, error) {