From 4d9d915eae5984d25a3e7f557106935546a6563f Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 22 Mar 2019 10:37:50 +0100 Subject: syz-ci: fix filling of kernel commit in bisection jobs There is a bit of a mess: dashboard expects the start commit in build info, but syz-ci sends the resulting cause commit. Moreover for inconclusive bisection the commit is not filled at all. Fill start commit in build info on start. Update #501 --- dashboard/dashapi/dashapi.go | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) (limited to 'dashboard/dashapi') diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index d53786476..238e1742a 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -126,18 +126,20 @@ type JobPollReq struct { } type JobPollResp struct { - ID string - Type JobType - Manager string - KernelRepo string - KernelBranch string - KernelCommit string - KernelConfig []byte - SyzkallerCommit string - Patch []byte - ReproOpts []byte - ReproSyz []byte - ReproC []byte + ID string + Type JobType + Manager string + KernelRepo string + KernelBranch string + KernelCommit string + KernelCommitTitle string + KernelCommitDate time.Time + KernelConfig []byte + SyzkallerCommit string + Patch []byte + ReproOpts []byte + ReproSyz []byte + ReproC []byte } type JobDoneReq struct { -- cgit mrf-deployment