From 9dd89763a119bc50d28fe0b901cd56a4bd3ea39d Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 27 Dec 2017 14:28:08 +0100 Subject: syz-ci: don't mark build errors as corrupted Otherwise they get merged with other corrupted reports. --- syz-ci/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syz-ci/manager.go b/syz-ci/manager.go index d6a47d30c..1f4b01b5c 100644 --- a/syz-ci/manager.go +++ b/syz-ci/manager.go @@ -396,7 +396,7 @@ func (mgr *Manager) reportBuildError(rep *report.Report, info *BuildInfo, imageD Build: *build, Crash: dashapi.Crash{ Title: rep.Title, - Corrupted: rep.Corrupted, + Corrupted: false, // Otherwise they get merged with other corrupted reports. Maintainers: rep.Maintainers, Log: rep.Output, Report: rep.Report, -- cgit mrf-deployment