Skip to content

Commit

Permalink
fix multiple projects using corpus-replicator (#12372)
Browse files Browse the repository at this point in the history
Fixes broken builds

---------

Signed-off-by: David Korczynski <[email protected]>
  • Loading branch information
DavidKorczynski authored Aug 17, 2024
1 parent 34dad13 commit 717046c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion projects/libldac/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ FROM gcr.io/oss-fuzz-base/base-builder

RUN apt-get update && apt-get install -y automake ffmpeg libtool
RUN git clone --depth 1 -b master https://android.googlesource.com/platform/external/libldac
RUN python3 -m pip install corpus-replicator
RUN python3 -m pip install --upgrade pip && python3 -m pip install corpus-replicator
RUN corpus-replicator -o corpora audio_pcm_wav_ffmpeg.yml audio

WORKDIR libldac
Expand Down
2 changes: 1 addition & 1 deletion projects/tremor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y make autoconf automake ffmpeg libogg-dev libtool pkg-config wget
RUN python3 -m pip install corpus-replicator
RUN python3 -m pip install --upgrade pip && python3 -m pip install corpus-replicator
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 corpus-replicator -o decode_corpus audio_vorbis_ogg_libvorbis.yml audio
Expand Down
2 changes: 1 addition & 1 deletion projects/vorbis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y make autoconf automake ffmpeg libtool pkg-config python3 wget
RUN python3 -m pip install corpus-replicator
RUN python3 -m pip install --upgrade pip && python3 -m pip install corpus-replicator
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 corpus-replicator -o decode_corpus audio_vorbis_ogg_libvorbis.yml audio
Expand Down

0 comments on commit 717046c

Please sign in to comment.