aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2025-11-24 08:05:16 +0100
committerDmitry Vyukov <dvyukov@google.com>2026-01-09 12:51:45 +0000
commit533546563b43424f499d2593e18f52d248283b42 (patch)
treee92a24f0af4ed789b0cf3b2cfcd007ecfc2de455 /pkg
parent1e5e6467ab883505a42c23233dc27b2ea2d36da1 (diff)
syz-agent: add agentic server
Add server for running agentic workflows as part of syzbot. The architecture and use are similar to that of syz-ci.
Diffstat (limited to 'pkg')
-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 {