You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
604 B
23 lines
604 B
4 years ago
|
name: CIFuzz
|
||
|
on: [pull_request]
|
||
|
jobs:
|
||
|
Fuzzing:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Build Fuzzers
|
||
|
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
||
|
with:
|
||
|
oss-fuzz-project-name: 'utf8proc'
|
||
|
dry-run: false
|
||
|
- name: Run Fuzzers
|
||
|
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
||
|
with:
|
||
|
oss-fuzz-project-name: 'utf8proc'
|
||
|
fuzz-seconds: 600
|
||
|
dry-run: false
|
||
|
- name: Upload Crash
|
||
|
uses: actions/upload-artifact@v1
|
||
|
if: failure()
|
||
|
with:
|
||
|
name: artifacts
|
||
|
path: ./out/artifacts
|