aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-06-19 17:23:03 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-06-20 19:59:55 +0200
commit6573032fffc201ee69dfe22d0d678eda8f915436 (patch)
tree2f35ad8c63b7b474b3072b1ce71dd0877b6d9b71 /Makefile
parentfea266b33f5e4170b75d678d5e355f947aeb50cc (diff)
syz-ci: add continuous integration system
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 424ef7073..8f75d01e6 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ ifeq ($(NOSTATIC), 0)
STATIC_FLAG=-static
endif
-.PHONY: all format tidy clean manager fuzzer executor execprog mutate prog2c stress extract generate repro db bin/syz-extract bin/syz-sysgen
+.PHONY: all format tidy clean manager fuzzer executor execprog ci mutate prog2c stress extract generate repro db bin/syz-extract bin/syz-sysgen
all:
go install ./syz-manager ./syz-fuzzer
@@ -36,6 +36,9 @@ fuzzer:
execprog:
go build $(GOFLAGS) -o ./bin/syz-execprog github.com/google/syzkaller/tools/syz-execprog
+ci:
+ go build $(GOFLAGS) -o ./bin/syz-ci github.com/google/syzkaller/syz-ci
+
repro:
go build $(GOFLAGS) -o ./bin/syz-repro github.com/google/syzkaller/tools/syz-repro