Browse Source

Fix storing crash/timeout fuzzing file

master
Samuel Thibault 5 months ago
parent
commit
f1b3bdd29e
1 changed files with 6 additions and 2 deletions
  1. 6
    2
      .github/workflows/workflow-for-fuzzing.yml

+ 6
- 2
.github/workflows/workflow-for-fuzzing.yml View File

@@ -37,7 +37,9 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: crash-${{ matrix.arch }}-${{ inputs.lang }}.1
path: crash-* timeout-*
path: |
crash-*
timeout-*
- name: Fuzz function synth_espeak() with language-specific input
run: cp dictsource/${{ inputs.lang }}_* tests/fuzzing/CORPUS_DIR/ || true ; FUZZ_VOICE=${{ inputs.lang }} tests/fuzzing/synth_fuzzer.test -seed=1 -runs=10000 -max_len=4096 tests/fuzzing/CORPUS_DIR
- name: Store the crash POC
@@ -45,5 +47,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: crash-${{ matrix.arch }}-${{ inputs.lang }}.2
path: crash-* timeout-*
path: |
crash-*
timeout-*


Loading…
Cancel
Save