From 6266e6eb49b4d1e1045ac07ae0ee1e0f718856f4 Mon Sep 17 00:00:00 2001 From: Noah Hellman Date: Fri, 17 Mar 2023 19:01:29 +0100 Subject: [PATCH] ci: add fuzz html step --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a62334c..8244981 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,10 +77,13 @@ jobs: rustup update nightly rustup default nightly cargo install afl - - name: "Fuzz" + - name: "Fuzz parser" run: | 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: name: Benchmark runs-on: ubuntu-latest