[vorbis] Use shallow clone (#4259)

* [vorbis] Use shallow clone

* [tremor] Use shallow clone
This commit is contained in:
Tyson Smith 2020-08-05 15:45:14 -07:00 committed by GitHub
parent 3707eb201b
commit 2f4da4e8da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y make autoconf automake libogg-dev libtool pkg-config wget
RUN git clone https://gitlab.xiph.org/xiph/ogg.git
RUN git clone https://gitlab.xiph.org/xiph/tremor.git
RUN git clone --depth 1 https://gitlab.xiph.org/xiph/ogg.git
RUN git clone --depth 1 https://gitlab.xiph.org/xiph/tremor.git
RUN svn export https://github.com/mozillasecurity/fuzzdata.git/trunk/samples/vorbis decode_corpus
WORKDIR tremor
COPY decode_fuzzer.cc $SRC/tremor/

View File

@ -16,8 +16,8 @@
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config wget
RUN git clone https://gitlab.xiph.org/xiph/ogg.git
RUN git clone https://gitlab.xiph.org/xiph/vorbis.git
RUN git clone --depth 1 https://gitlab.xiph.org/xiph/ogg.git
RUN git clone --depth 1 https://gitlab.xiph.org/xiph/vorbis.git
RUN svn export https://github.com/mozillasecurity/fuzzdata.git/trunk/samples/ogg decode_corpus
RUN svn export --force https://github.com/mozillasecurity/fuzzdata.git/trunk/samples/vorbis decode_corpus
# TODO: remove `people.xiph.org` lines once upstream build script is updated