Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wuffs: fix build by fixing corpus link #8084

Merged
merged 1 commit into from
Jul 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 3 additions & 4 deletions projects/wuffs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,9 @@ RUN mkdir bmpsuite_corpus
RUN unzip -j bmpsuite.zip -d bmpsuite_corpus
RUN rm bmpsuite.zip

RUN wget -O pngsuite.tgz http://www.schaik.com/pngsuite/PngSuite-2017jul19.tgz
RUN mkdir pngsuite_corpus
RUN tar xf pngsuite.tgz --one-top-level=pngsuite_corpus
RUN rm pngsuite.tgz
RUN mkdir pngsuite_corpus && \
git clone --depth=1 https://github.com/MozillaSecurity/fuzzdata && \
cp ./fuzzdata/samples/png/common/*.png ./pngsuite_corpus

RUN wget -O rapidjson.zip "https://github.com/guidovranken/rapidjson-fuzzers/blob/master/fuzzer_seed_corpus.zip?raw=true"
RUN mkdir rapidjson_corpus
Expand Down