Output updated seed corpora as artifacts
This commit is contained in:
parent
4f3f2d1fca
commit
e78c370f32
1 changed files with 25 additions and 1 deletions
26
.github/workflows/ci.yaml
vendored
26
.github/workflows/ci.yaml
vendored
|
@ -112,6 +112,12 @@ jobs:
|
||||||
name: fuzz_read_bad_inputs
|
name: fuzz_read_bad_inputs
|
||||||
path: fuzz/artifacts/fuzz_read/crash-*
|
path: fuzz/artifacts/fuzz_read/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_read_corpus
|
||||||
|
path: fuzz/corpus/seed/*
|
||||||
|
|
||||||
fuzz_read_with_no_features:
|
fuzz_read_with_no_features:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -145,6 +151,12 @@ jobs:
|
||||||
name: fuzz_read_no_features_bad_inputs
|
name: fuzz_read_no_features_bad_inputs
|
||||||
path: fuzz/artifacts/fuzz_read/crash-*
|
path: fuzz/artifacts/fuzz_read/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_read_no_features_corpus
|
||||||
|
path: fuzz/corpus/seed/*
|
||||||
|
|
||||||
fuzz_write:
|
fuzz_write:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -178,6 +190,12 @@ jobs:
|
||||||
name: fuzz_write_bad_inputs
|
name: fuzz_write_bad_inputs
|
||||||
path: fuzz/artifacts/fuzz_write/crash-*
|
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_corpus
|
||||||
|
path: fuzz/corpus/seed/*
|
||||||
|
|
||||||
fuzz_write_with_no_features:
|
fuzz_write_with_no_features:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -210,4 +228,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: fuzz_write_no_features_bad_inputs
|
name: fuzz_write_no_features_bad_inputs
|
||||||
path: fuzz/artifacts/fuzz_write/crash-*
|
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/*
|
Loading…
Add table
Reference in a new issue