Skip to content

Commit 6a98d95

Browse files
skcms: fix build (#13643)
corpus url is no longer accessible. Blocking e.g. #13642 Signed-off-by: David Korczynski <david@adalogics.com>
1 parent 031240c commit 6a98d95

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

projects/skcms/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ FROM gcr.io/oss-fuzz-base/base-builder
1919
# checkout all sources needed to build your project
2020
RUN git clone --depth 1 https://skia.googlesource.com/skcms.git
2121

22-
RUN wget -O $SRC/skcms/iccprofile_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/iccprofile_seed_corpus.zip
22+
# Disable the below to fix build. The URL is not accessible. Leaving it
23+
# commented out if the URL becomes available again.
24+
# RUN wget -O $SRC/skcms/iccprofile_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/iccprofile_seed_corpus.zip
2325

2426
# current directory for build script
2527
WORKDIR skcms
@@ -32,4 +34,4 @@ RUN apt-get update && \
3234

3335
COPY build.sh $SRC/
3436

35-
COPY iccprofile.options iccprofile.dict $SRC/skcms/
37+
COPY iccprofile.options iccprofile.dict $SRC/skcms/

projects/skcms/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ cp iccprofile.options $OUT/iccprofile_info.options
2626
cp iccprofile.options $OUT/iccprofile_atf.options
2727
cp iccprofile.options $OUT/fuzz_iccprofile_transform.options
2828
# They all share the same seed corpus of icc profiles
29-
cp iccprofile_seed_corpus.zip $OUT/iccprofile_info_seed_corpus.zip
30-
cp iccprofile_seed_corpus.zip $OUT/iccprofile_atf_seed_corpus.zip
31-
cp iccprofile_seed_corpus.zip $OUT/iccprofile_transform_seed_corpus.zip
29+
#cp iccprofile_seed_corpus.zip $OUT/iccprofile_info_seed_corpus.zip
30+
#cp iccprofile_seed_corpus.zip $OUT/iccprofile_atf_seed_corpus.zip
31+
#cp iccprofile_seed_corpus.zip $OUT/iccprofile_transform_seed_corpus.zip
3232
# They all use the same dictionary file.
3333
cp iccprofile.dict $OUT/iccprofile.dict

0 commit comments

Comments
 (0)