From 4ed7e8fc82c8bd239761cc8c0aa55cad646e94d9 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 8 May 2024 12:27:17 +0200 Subject: 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. --- syz-ci/updater.go | 6 ------ 1 file changed, 6 deletions(-) (limited to 'syz-ci') 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") -- cgit mrf-deployment