Skip to content

Commit

Permalink
Output updated seed corpora as artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Pr0methean committed Apr 11, 2024
1 parent 4f3f2d1 commit e78c370
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,12 @@ jobs:
name: fuzz_read_bad_inputs
path: fuzz/artifacts/fuzz_read/crash-*
if-no-files-found: ignore
- name: Upload updated seed corpus
if: always()
uses: actions/upload-artifact@v4
with:
name: fuzz_read_corpus
path: fuzz/corpus/seed/*

fuzz_read_with_no_features:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -145,6 +151,12 @@ jobs:
name: fuzz_read_no_features_bad_inputs
path: fuzz/artifacts/fuzz_read/crash-*
if-no-files-found: ignore
- name: Upload updated seed corpus
if: always()
uses: actions/upload-artifact@v4
with:
name: fuzz_read_no_features_corpus
path: fuzz/corpus/seed/*

fuzz_write:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -178,6 +190,12 @@ jobs:
name: fuzz_write_bad_inputs
path: fuzz/artifacts/fuzz_write/crash-*
if-no-files-found: ignore
- name: Upload updated seed corpus
if: always()
uses: actions/upload-artifact@v4
with:
name: fuzz_write_corpus
path: fuzz/corpus/seed/*

fuzz_write_with_no_features:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -210,4 +228,10 @@ jobs:
with:
name: fuzz_write_no_features_bad_inputs
path: fuzz/artifacts/fuzz_write/crash-*
if-no-files-found: ignore
if-no-files-found: ignore
- name: Upload updated seed corpus
if: always()
uses: actions/upload-artifact@v4
with:
name: fuzz_write_no_features_corpus
path: fuzz/corpus/seed/*

0 comments on commit e78c370

Please sign in to comment.