mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-24 17:06:16 +03:00
Keep errors if they're "known"
This commit is contained in:
parent
a12aa59e8b
commit
f194d9e6e2
11
.github/workflows/cifuzz.yml
vendored
11
.github/workflows/cifuzz.yml
vendored
|
@ -12,15 +12,22 @@ jobs:
|
||||||
language: python
|
language: python
|
||||||
dry-run: false
|
dry-run: false
|
||||||
- name: Run Fuzzers
|
- name: Run Fuzzers
|
||||||
|
id: run
|
||||||
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
||||||
with:
|
with:
|
||||||
oss-fuzz-project-name: 'pillow'
|
oss-fuzz-project-name: 'pillow'
|
||||||
fuzz-seconds: 600
|
fuzz-seconds: 600
|
||||||
language: python
|
language: python
|
||||||
dry-run: false
|
dry-run: false
|
||||||
- name: Upload Crash
|
- name: Upload New Crash
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v2
|
||||||
if: failure() && steps.build.outcome == 'success'
|
if: failure() && steps.build.outcome == 'success'
|
||||||
with:
|
with:
|
||||||
name: artifacts
|
name: artifacts
|
||||||
path: ./out/artifacts
|
path: ./out/artifacts
|
||||||
|
- name: Upload Legacy Crash
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
if: steps.run.outcome == 'success':
|
||||||
|
with:
|
||||||
|
name: crash
|
||||||
|
path: ./out/crash*
|
||||||
|
|
Loading…
Reference in New Issue
Block a user