curl/.github/workflows/fuzz.yml

41 lines
869 B
YAML
Raw Normal View History

# Copyright (C) 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
#
# SPDX-License-Identifier: curl
name: Fuzzer
on:
# Trigger the workflow on push or pull requests, but only for the
# master branch
push:
branches:
- master
- '*/ci'
pull_request:
branches:
- master
2020-02-21 08:17:50 +08:00
jobs:
fuzzing:
2020-02-21 08:17:50 +08:00
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'curl'
dry-run: false
2020-02-21 08:17:50 +08:00
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'curl'
fuzz-seconds: 2400
dry-run: false
2020-02-21 08:17:50 +08:00
- name: Upload Crash
uses: actions/upload-artifact@v3
2020-02-21 08:17:50 +08:00
if: failure()
with:
name: artifacts
path: ./out/artifacts