aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/updater/updater.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/updater/updater.go')
-rw-r--r--pkg/updater/updater.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/updater/updater.go b/pkg/updater/updater.go
index bf7b816ca..ed4938609 100644
--- a/pkg/updater/updater.go
+++ b/pkg/updater/updater.go
@@ -88,6 +88,7 @@ func New(cfg *Config) (*Updater, error) {
"tag": true, // contains syzkaller repo git hash
"bin/syz-ci": true, // these are just copied from syzkaller dir
"bin/syz-manager": true,
+ "bin/syz-agent": true,
"sys/*/test/*": true,
}
for target := range cfg.Targets {
@@ -273,7 +274,7 @@ func (upd *Updater) build(commit *vcs.Commit) error {
}
}
// This will also generate descriptions and should go before the 'go test' below.
- cmd := osutil.Command(instance.MakeBin, "host", "ci")
+ cmd := osutil.Command(instance.MakeBin, "host", "ci", "agent")
cmd.Dir = upd.syzkallerDir
cmd.Env = append([]string{"GOPATH=" + upd.gopathDir}, os.Environ()...)
if _, err := osutil.Run(time.Hour, cmd); err != nil {