From 30465d6f98966a89a95eec8823233cfe4ebc0251 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 30 Jul 2019 16:16:41 +0200 Subject: fuzzit.sh: go get go-fuzz-build The build failed with: ./fuzzit.sh: line 13: go-fuzz-build: command not found Though we go get it in make presubmit. Perhaps, local files are not shared between jobs or something. Let's try to get get right in fuzzit.sh. --- fuzzit.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/fuzzit.sh b/fuzzit.sh index 5b63fd689..16e52acd8 100755 --- a/fuzzit.sh +++ b/fuzzit.sh @@ -15,6 +15,7 @@ function target { ./fuzzit create job --type $JOB_TYPE --branch $TRAVIS_BRANCH --revision $TRAVIS_COMMIT $1 ./fuzzer } +go get -u github.com/dvyukov/go-fuzz/go-fuzz-build wget -q -O fuzzit https://github.com/fuzzitdev/fuzzit/releases/download/v1.2.7/fuzzit_Linux_x86_64 chmod a+x fuzzit ./fuzzit auth ${FUZZIT_API_KEY} -- cgit mrf-deployment