aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Guido Vranken <guidovranken@users.noreply.github.com>2021-03-07 15:23:42 +0100
committerGravatar GitHub <noreply@github.com>2021-03-07 06:23:42 -0800
commit96ae2ed544659c7475a4296d4ee55d4ebd69f37e (patch)
treebd5160fc8e45ff39171cd6dd8d8f33b267baeea0
parentded6109b7f390f401159065d8e2c2d6f382e449a (diff)
[cryptofuzz] Fix build (#5310)
* [cryptofuzz] Fix build * [cryptofuzz] Trigger CI
-rwxr-xr-xprojects/cryptofuzz/build.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/projects/cryptofuzz/build.sh b/projects/cryptofuzz/build.sh
index c4ccec83..9aa3c948 100755
--- a/projects/cryptofuzz/build.sh
+++ b/projects/cryptofuzz/build.sh
@@ -18,6 +18,8 @@
# TODO(metzman): Switch this to LIB_FUZZING_ENGINE when it works.
# https://github.com/google/oss-fuzz/issues/2336
+export GO111MODULE=off
+
# Compile xxd
$CC $SRC/xxd.c -o /usr/bin/xxd
@@ -653,3 +655,4 @@ cp $SRC/cryptofuzz/cryptofuzz $OUT/cryptofuzz-boringssl-noasm
cp $SRC/cryptofuzz/cryptofuzz-dict.txt $OUT/cryptofuzz-boringssl-noasm.dict
# Copy seed corpus
cp $SRC/cryptofuzz-corpora/boringssl_latest.zip $OUT/cryptofuzz-boringssl-noasm_seed_corpus.zip
+