File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 16
16
17
17
FROM gcr.io/oss-fuzz-base/base-builder
18
18
RUN apt-get update && apt-get install -y build-essential pkg-config libz-dev
19
- RUN git clone https://github.com/gpac/gpac && git clone https://github.com/gpac/testsuite
19
+ RUN git clone https://github.com/gpac/gpac && cd gpac && git submodule update --init --remote --recursive
20
20
21
- WORKDIR $SRC
22
21
COPY build.sh $SRC/
22
+ WORKDIR $SRC/gpac
Original file line number Diff line number Diff line change 15
15
#
16
16
# ###############################################################################
17
17
18
- cd gpac
19
18
./configure --static-build --extra-cflags=" ${CFLAGS} " --extra-ldflags=" ${CFLAGS} "
20
19
make
21
20
22
21
23
- fuzzers=$( find $SRC /testsuite/oss-fuzzers -name " fuzz_*.c" )
22
+ fuzzers=$( find $SRC /gpac/ testsuite/oss-fuzzers -name " fuzz_*.c" )
24
23
for f in $fuzzers ; do
25
24
26
25
fuzzerName=$( basename $f .c)
@@ -32,8 +31,8 @@ for f in $fuzzers; do
32
31
-lm -lz -lpthread -lssl -lcrypto -DGPAC_HAVE_CONFIG_H
33
32
34
33
35
- if [ -d " $SRC /testsuite/oss-fuzzers/${fuzzerName} _corpus" ]; then
36
- zip -j $OUT /${fuzzerName} _seed_corpus.zip $SRC /testsuite/oss-fuzzers/${fuzzerName} _corpus/*
34
+ if [ -d " $SRC /gpac/ testsuite/oss-fuzzers/${fuzzerName} _corpus" ]; then
35
+ zip -j $OUT /${fuzzerName} _seed_corpus.zip $SRC /gpac/ testsuite/oss-fuzzers/${fuzzerName} _corpus/*
37
36
fi
38
37
39
38
done
You can’t perform that action at this time.
0 commit comments