mirror of https://github.com/google/oss-fuzz.git
jackson-databind: move corpus out of OSS-Fuzz (#8521)
ref: - https://github.com/google/oss-fuzz/pull/8502#discussion_r973409891 - https://github.com/google/oss-fuzz/pull/8517 Signed-off-by: AdamKorcz <adam@adalogics.com> Signed-off-by: AdamKorcz <adam@adalogics.com>
This commit is contained in:
parent
ac173096ef
commit
ebb30238a0
Binary file not shown.
|
@ -34,6 +34,9 @@ RUN git clone --depth 1 --branch 2.14 https://github.com/FasterXML/jackson-datab
|
|||
|
||||
RUN git clone --depth 1 https://github.com/forge/roaster
|
||||
|
||||
# Seed files
|
||||
RUN git clone --depth 1 https://github.com/AdamKorcz/github-samples
|
||||
|
||||
ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
|
||||
|
||||
WORKDIR jackson-databind
|
||||
|
@ -43,4 +46,3 @@ RUN git clone --depth 1 https://github.com/FasterXML/jackson-core
|
|||
|
||||
COPY build.sh $SRC/
|
||||
COPY *Fuzzer.java $SRC/
|
||||
COPY AdaLObjectReader3Fuzzer_seed_corpus.zip $SRC/
|
|
@ -23,6 +23,7 @@ cd $SRC/jackson-databind
|
|||
|
||||
# Move seed corpus and dictionary.
|
||||
mv $SRC/{*.zip,*.dict} $OUT
|
||||
mv $SRC/github-samples/jackson/*.zip $OUT/
|
||||
|
||||
# jackson-databind
|
||||
MAVEN_ARGS="-Djavac.src.version=15 -Djavac.target.version=15 -DskipTests"
|
||||
|
|
Loading…
Reference in New Issue