2023-01-03 16:16:17 +00:00
|
|
|
# Copyright 2020 Google Inc. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Distributed under MIT license.
|
|
|
|
# See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
|
|
|
|
|
|
|
# Workflow for building / running oss-fuzz.
|
|
|
|
|
2020-03-19 08:52:07 +00:00
|
|
|
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: 'brotli'
|
|
|
|
dry-run: false
|
|
|
|
- name: Run Fuzzers
|
|
|
|
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
|
|
|
with:
|
|
|
|
oss-fuzz-project-name: 'brotli'
|
|
|
|
fuzz-seconds: 600
|
|
|
|
dry-run: false
|
|
|
|
- name: Upload Crash
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: artifacts
|
|
|
|
path: ./out/artifacts
|