[golang] set explictly GO111MODULES=off (#2914)

This will prevent breaking go-fuzz when it will support go modules
https://github.com/dvyukov/go-fuzz/issues/195

and addressing this issue:
https://github.com/google/oss-fuzz/issues/2878
This commit is contained in:
Yevgeny Pats 2019-10-03 23:15:08 +03:00 committed by Max Moroz
parent 27d875fbd1
commit 79132050e2
1 changed files with 2 additions and 0 deletions

View File

@ -23,4 +23,6 @@ RUN mkdir -p $GOPATH/src/github.com/dvyukov/ && \
COPY build.sh $SRC/ COPY build.sh $SRC/
ENV GO111MODULE="off"
WORKDIR $SRC/golang WORKDIR $SRC/golang