From 533546563b43424f499d2593e18f52d248283b42 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 24 Nov 2025 08:05:16 +0100 Subject: 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. --- pkg/updater/updater.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkg') 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 { -- cgit mrf-deployment