mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
61 lines
1.3 KiB
YAML
61 lines
1.3 KiB
YAML
name: CIFuzz
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "**"
|
|
paths:
|
|
- ".github/workflows/cifuzz.yml"
|
|
- "**.c"
|
|
- "**.h"
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows/cifuzz.yml"
|
|
- "**.c"
|
|
- "**.h"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
Fuzzing:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Build Fuzzers
|
|
id: build
|
|
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
|
with:
|
|
oss-fuzz-project-name: 'pillow'
|
|
language: python
|
|
dry-run: false
|
|
- name: Run Fuzzers
|
|
id: run
|
|
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
|
with:
|
|
oss-fuzz-project-name: 'pillow'
|
|
fuzz-seconds: 600
|
|
language: python
|
|
dry-run: false
|
|
- name: Upload New Crash
|
|
uses: actions/upload-artifact@v3
|
|
if: failure() && steps.build.outcome == 'success'
|
|
with:
|
|
name: artifacts
|
|
path: ./out/artifacts
|
|
- name: Upload Legacy Crash
|
|
uses: actions/upload-artifact@v3
|
|
if: steps.run.outcome == 'success'
|
|
with:
|
|
name: crash
|
|
path: ./out/crash*
|
|
- name: Fail on legacy crash
|
|
if: success()
|
|
run: |
|
|
[ ! -e out/crash-* ]
|
|
echo No legacy crash detected
|