ci: add fuzz html step
This commit is contained in:
parent
14065177ae
commit
6266e6eb49
1 changed files with 5 additions and 2 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -77,10 +77,13 @@ jobs:
|
||||||
rustup update nightly
|
rustup update nightly
|
||||||
rustup default nightly
|
rustup default nightly
|
||||||
cargo install afl
|
cargo install afl
|
||||||
- name: "Fuzz"
|
- name: "Fuzz parser"
|
||||||
run: |
|
run: |
|
||||||
echo core | sudo tee /proc/sys/kernel/core_pattern
|
echo core | sudo tee /proc/sys/kernel/core_pattern
|
||||||
make afl_quick
|
AFL_TARGET=parse make afl_quick
|
||||||
|
- name: "Fuzz html"
|
||||||
|
run: |
|
||||||
|
AFL_TARGET=html make afl_quick
|
||||||
bench:
|
bench:
|
||||||
name: Benchmark
|
name: Benchmark
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in a new issue