From 6573032fffc201ee69dfe22d0d678eda8f915436 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 19 Jun 2017 17:23:03 +0200 Subject: syz-ci: add continuous integration system --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit mrf-deployment