diff --git a/.github/workflows/generic-weekly-fuzzer.yml b/.github/workflows/generic-weekly-fuzzer.yml index af7ccab..2c19c9f 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