mirror of https://github.com/google/oss-fuzz.git
[servo] merging of servo components into one project folder (#3950)
* Moved html5ever to servo project. * Added rust-url to servo fuzzing project. * Fix project link.
This commit is contained in:
parent
fa81803dd4
commit
778d61c291
|
@ -17,5 +17,7 @@ FROM gcr.io/oss-fuzz-base/base-builder
|
|||
MAINTAINER david@adalogics.com
|
||||
|
||||
RUN git clone --depth 1 https://github.com/servo/html5ever
|
||||
RUN git clone --depth 1 https://github.com/servo/rust-url
|
||||
|
||||
WORKDIR $SRC
|
||||
COPY build.sh $SRC/
|
|
@ -18,3 +18,7 @@
|
|||
cd $SRC/html5ever/html5ever
|
||||
cargo fuzz build -O
|
||||
cp fuzz/target/x86_64-unknown-linux-gnu/release/fuzz_document_parse $OUT/
|
||||
|
||||
cd $SRC/rust-url
|
||||
cargo fuzz build -O
|
||||
cp fuzz/target/x86_64-unknown-linux-gnu/release/parse $OUT/fuzz-url-parse
|
|
@ -1,4 +1,4 @@
|
|||
homepage: "https://github.com/servo/html5ever"
|
||||
homepage: "https://github.com/servo"
|
||||
primary_contact: "servo-ops@mozilla.com"
|
||||
sanitizers:
|
||||
- address
|
||||
|
@ -6,5 +6,6 @@ fuzzing_engines:
|
|||
- libfuzzer
|
||||
language: rust
|
||||
auto_ccs:
|
||||
- "david@adalogics.com"
|
||||
- "jmatthews@mozilla.com"
|
||||
- "vgosu@mozilla.com"
|
||||
- "david@adalogics.com"
|
Loading…
Reference in New Issue