mirror of https://github.com/google/oss-fuzz.git
Fixes teleport and syzkaller builds (#5254)
* Fixes teleport and syzkaller builds By running go mod vendor after go mod tidy * fixup syzkaller
This commit is contained in:
parent
c0cb833e8b
commit
a339cd0ff1
|
@ -18,6 +18,9 @@
|
|||
|
||||
|
||||
make descriptions
|
||||
|
||||
go mod tidy && go mod vendor
|
||||
|
||||
compile_go_fuzzer github.com/google/syzkaller/pkg/compiler Fuzz compiler_fuzzer
|
||||
compile_go_fuzzer github.com/google/syzkaller/prog/test FuzzDeserialize prog_deserialize_fuzzer
|
||||
compile_go_fuzzer github.com/google/syzkaller/prog/test FuzzParseLog prog_parselog_fuzzer
|
||||
|
|
|
@ -15,5 +15,6 @@
|
|||
################################################################################
|
||||
|
||||
FROM gcr.io/oss-fuzz-base/base-builder
|
||||
RUN git clone --depth 1 https://github.com/gravitational/teleport.git
|
||||
COPY build.sh $SRC/
|
||||
WORKDIR $SRC/
|
||||
WORKDIR $SRC/teleport
|
||||
|
|
|
@ -15,10 +15,7 @@
|
|||
#
|
||||
################################################################################
|
||||
|
||||
|
||||
mkdir -p $GOPATH/src/github.com/gravitational
|
||||
cd $GOPATH/src/github.com/gravitational
|
||||
git clone https://github.com/gravitational/teleport.git
|
||||
make update-vendor
|
||||
|
||||
compile_go_fuzzer github.com/gravitational/teleport/lib/fuzz FuzzParseProxyJump utils_fuzz gofuzz
|
||||
compile_go_fuzzer github.com/gravitational/teleport/lib/fuzz FuzzNewExpression parse_fuzz gofuzz
|
||||
|
|
Loading…
Reference in New Issue