aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-05-08 12:27:17 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-05-08 12:26:59 +0000
commit4ed7e8fc82c8bd239761cc8c0aa55cad646e94d9 (patch)
treefc4d2c6dcfaf7646fea673b7f0c6ab604e22dc80
parent4dbd403fd0978b91ffe3bb2f2a749511591644dd (diff)
syz-ci: don't run make generate for custom descriptions
This shouldn't be needed now. After copying files we need to regenerate syzkaller descriptions, but all make steps that build Go binaries already depend on "descriptions" target. We also need to update executor/common_ext.h for C repros, but after switching to go:embed, this shuold be handled automatically as well.
-rw-r--r--syz-ci/updater.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/syz-ci/updater.go b/syz-ci/updater.go
index 9a3998e35..1d45975a7 100644
--- a/syz-ci/updater.go
+++ b/syz-ci/updater.go
@@ -252,12 +252,6 @@ func (upd *SyzUpdater) build(commit *vcs.Commit) error {
return err
}
}
- cmd := osutil.Command(instance.MakeBin, "generate")
- cmd.Dir = upd.syzkallerDir
- cmd.Env = append([]string{"GOPATH=" + upd.gopathDir}, os.Environ()...)
- if _, err := osutil.Run(time.Hour, cmd); err != nil {
- return osutil.PrependContext("generate failed", err)
- }
}
// This will also generate descriptions and should go before the 'go test' below.
cmd := osutil.Command(instance.MakeBin, "host", "ci")