From 2218936e2e643ce64b76de7e3d87ed4056f7ec74 Mon Sep 17 00:00:00 2001 From: Nikita Khateev Date: Wed, 11 Dec 2024 18:36:42 +0400 Subject: [PATCH] Fix Weekly Fuzzer Run (#375) * debugging fuzz testing * add zipping of artifacts * remove test constants --- .github/workflows/generic-weekly-fuzzer.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/generic-weekly-fuzzer.yml b/.github/workflows/generic-weekly-fuzzer.yml index af7ccab5..2c19c9f5 100644 --- a/.github/workflows/generic-weekly-fuzzer.yml +++ b/.github/workflows/generic-weekly-fuzzer.yml @@ -31,12 +31,14 @@ jobs: - name: Run Ziggy Fuzzing run: | - timeout 5h cargo ziggy fuzz -t 20 || true + AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1 timeout 5h cargo ziggy fuzz -t 20 || true working-directory: generic-template/template-fuzzer + - name: Zip Artifacts + run: zip artifacts.zip generic-template/template-fuzzer/output/* -r + - name: Save Artifacts uses: actions/upload-artifact@v4 with: name: fuzzing-artifacts - path: | - generic-template/template-fuzzer/output \ No newline at end of file + path: artifacts.zip