forked from yaml/libyaml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[infra] making shallow git clones. fixes yaml#42
- Loading branch information
Showing
24 changed files
with
37 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ | |
FROM ossfuzz/base-libfuzzer | ||
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool | ||
RUN git clone <git_url> %(project_name)s # or use other version control | ||
RUN git clone --depth 1 <git_url> %(project_name)s # or use other version control | ||
WORKDIR %(project_name)s | ||
COPY build.sh $src/ | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,5 +18,5 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y cmake ninja-build golang | ||
|
||
RUN git clone https://boringssl.googlesource.com/boringssl | ||
RUN git clone --depth 1 https://boringssl.googlesource.com/boringssl | ||
COPY build.sh $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,6 @@ | |
FROM ossfuzz/base-libfuzzer | ||
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool | ||
RUN git clone https://github.com/c-ares/c-ares.git | ||
RUN git clone --depth 1 https://github.com/c-ares/c-ares.git | ||
WORKDIR c-ares | ||
COPY build.sh *_fuzzer.cc $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool libssl-dev zlib1g-dev | ||
|
||
RUN git clone https://github.com/curl/curl.git | ||
RUN git clone --depth 1 https://github.com/curl/curl.git | ||
WORKDIR curl | ||
COPY build.sh curl_fuzzer.cc *.options *.dict $SRC/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool docbook2x | ||
|
||
RUN git clone git://git.code.sf.net/p/expat/code_git expat | ||
RUN git clone --depth 1 git://git.code.sf.net/p/expat/code_git expat | ||
WORKDIR expat/expat | ||
COPY build.sh parse_fuzzer.* xml.dict $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
|
||
FROM ossfuzz/base-libfuzzer | ||
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool shtool | ||
RUN git clone https://github.com/file/file.git | ||
RUN apt-get install -y make autoconf automake libtool shtool | ||
RUN git clone --depth 1 https://github.com/file/file.git | ||
WORKDIR file | ||
COPY build.sh magic_fuzzer.cc $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf libtool libarchive-dev | ||
|
||
RUN git clone git://git.sv.nongnu.org/freetype/freetype2.git | ||
RUN git clone --depth 1 git://git.sv.nongnu.org/freetype/freetype2.git | ||
WORKDIR freetype2 | ||
COPY build.sh $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool ragel pkg-config | ||
|
||
RUN git clone https://anongit.freedesktop.org/git/harfbuzz.git | ||
RUN git clone --depth 1 https://anongit.freedesktop.org/git/harfbuzz.git | ||
WORKDIR harfbuzz | ||
COPY build.sh harfbuzz_fuzzer.cc $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y binutils gcc | ||
|
||
RUN git clone https://github.com/nlohmann/json.git | ||
RUN git clone --depth 1 https://github.com/nlohmann/json.git | ||
WORKDIR json/ | ||
COPY build.sh parse_fuzzer.* $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,6 @@ | |
FROM ossfuzz/base-libfuzzer | ||
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool | ||
RUN git clone https://github.com/mm2/Little-CMS.git lcms | ||
RUN git clone --depth 1 https://github.com/mm2/Little-CMS.git lcms | ||
WORKDIR lcms | ||
COPY build.sh cmsIT8_load_fuzzer.* cms_transform_fuzzer.* icc.dict $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,6 @@ MAINTAINER [email protected] | |
RUN apt-get install -y make autoconf automake libtool pkg-config \ | ||
libbz2-dev liblzo2-dev liblzma-dev liblz4-dev libz-dev \ | ||
libxml2-dev libssl-dev | ||
RUN git clone https://github.com/libarchive/libarchive.git | ||
RUN git clone --depth 1 https://github.com/libarchive/libarchive.git | ||
WORKDIR libarchive | ||
COPY build.sh libarchive_fuzzer.cc $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool pkg-config libfreetype6-dev libfontconfig1-dev | ||
|
||
RUN git clone https://github.com/libass/libass.git | ||
RUN git clone https://github.com/behdad/fribidi.git | ||
RUN git clone --depth 1 https://github.com/libass/libass.git | ||
RUN git clone --depth 1 https://github.com/behdad/fribidi.git | ||
|
||
COPY build.sh libass_fuzzer.cc *.dict *.options $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool texinfo | ||
|
||
RUN git clone https://github.com/chewing/libchewing.git | ||
RUN git clone --depth 1 https://github.com/chewing/libchewing.git | ||
WORKDIR libchewing | ||
COPY build.sh chewing_fuzzer_common.[ch] chewing_*_fuzzer.c $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
FROM ossfuzz/base-libfuzzer | ||
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool nasm curl | ||
RUN git clone https://github.com/libjpeg-turbo/libjpeg-turbo | ||
RUN git clone --depth 1 https://github.com/libjpeg-turbo/libjpeg-turbo | ||
|
||
RUN mkdir afl-testcases | ||
RUN curl -o afl-testcases/afl_testcases.tgz http://lcamtuf.coredump.cx/afl/demo/afl_testcases.tgz | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool zlib1g-dev | ||
|
||
RUN git clone git://git.code.sf.net/p/libpng/code libpng | ||
RUN git clone --depth 1 git://git.code.sf.net/p/libpng/code libpng | ||
WORKDIR libpng | ||
COPY build.sh libpng_read_fuzzer.* png.dict $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool pkg-config | ||
|
||
RUN git clone git://people.freedesktop.org/~dvdhrm/libtsm | ||
RUN git clone --depth 1 git://people.freedesktop.org/~dvdhrm/libtsm | ||
WORKDIR libtsm | ||
COPY build.sh libtsm_fuzzer.c $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool pkg-config | ||
|
||
RUN git clone git://git.gnome.org/libxml2 | ||
RUN git clone --depth 1 git://git.gnome.org/libxml2 | ||
WORKDIR libxml2 | ||
|
||
COPY build.sh $SRC/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,6 @@ | |
FROM ossfuzz/base-libfuzzer | ||
MAINTAINER [email protected] | ||
RUN apt-get install -y make | ||
RUN git clone https://github.com/openssl/openssl.git | ||
RUN git clone --depth 1 https://github.com/openssl/openssl.git | ||
WORKDIR openssl | ||
COPY build.sh $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
FROM ossfuzz/base-libfuzzer | ||
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool pkg-config zlib1g-dev | ||
RUN git clone https://github.com/khaledhosny/ots.git | ||
RUN git clone --depth 1 https://github.com/khaledhosny/ots.git | ||
WORKDIR ots | ||
COPY build.sh ots_fuzzer.* $SRC/ | ||
COPY seed_corpus $SRC/seed_corpus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool | ||
|
||
RUN git clone https://code.googlesource.com/re2 | ||
RUN git clone --depth 1 https://code.googlesource.com/re2 | ||
WORKDIR re2 | ||
COPY build.sh re2_fuzzer.* $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool | ||
|
||
RUN git clone --recursive https://github.com/google/woff2 | ||
RUN git clone --depth 1 --recursive --shallow-submodules https://github.com/google/woff2 | ||
WORKDIR woff2 | ||
COPY build.sh convert_woff2ttf_fuzzer.* $SRC/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ FROM ossfuzz/base-libfuzzer | |
MAINTAINER [email protected] | ||
RUN apt-get install -y make autoconf automake libtool | ||
|
||
RUN git clone https://github.com/madler/zlib.git | ||
RUN git clone --depth 1 https://github.com/madler/zlib.git | ||
WORKDIR zlib | ||
COPY build.sh zlib_uncompress_fuzzer.cc $SRC/ |