diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2025-11-24 08:05:16 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2026-01-09 12:51:45 +0000 |
| commit | 533546563b43424f499d2593e18f52d248283b42 (patch) | |
| tree | e92a24f0af4ed789b0cf3b2cfcd007ecfc2de455 /Makefile | |
| parent | 1e5e6467ab883505a42c23233dc27b2ea2d36da1 (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 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -104,7 +104,7 @@ ifeq ("$(TARGETOS)", "trusty") endif .PHONY: all clean host target \ - manager executor kfuzztest ci hub \ + manager executor kfuzztest ci hub agent \ execprog mutate prog2c trace2syz repro upgrade db \ usbgen symbolize cover kconf syz-build crush \ bin/syz-extract bin/syz-fmt \ @@ -172,6 +172,9 @@ ci: descriptions hub: descriptions GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-hub github.com/google/syzkaller/syz-hub +agent: descriptions + GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-agent github.com/google/syzkaller/syz-agent + repro: descriptions GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-repro github.com/google/syzkaller/tools/syz-repro |
