diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-07-30 16:16:41 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-07-30 16:16:41 +0200 |
| commit | 30465d6f98966a89a95eec8823233cfe4ebc0251 (patch) | |
| tree | b11d1b563791fcff9e04c4b71203ee8a87799c2b | |
| parent | efe659d763759a1eb7d573c01dfbeedeab3fc1ed (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-x | fuzzit.sh | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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} |
