ci: add fuzz html step

This commit is contained in:
Noah Hellman 2023-03-17 19:01:29 +01:00
parent 14065177ae
commit 6266e6eb49

View file

@ -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