aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2019-07-30 16:16:41 +0200
committerDmitry Vyukov <dvyukov@google.com>2019-07-30 16:16:41 +0200
commit30465d6f98966a89a95eec8823233cfe4ebc0251 (patch)
treeb11d1b563791fcff9e04c4b71203ee8a87799c2b
parentefe659d763759a1eb7d573c01dfbeedeab3fc1ed (diff)
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.
-rwxr-xr-xfuzzit.sh1
1 files changed, 1 insertions, 0 deletions
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}