123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # Copyright (C) 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
- #
- # SPDX-License-Identifier: curl
- name: Fuzzer
- on:
- push:
- branches:
- - master
- - '*/ci'
- pull_request:
- branches:
- - master
- concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
- cancel-in-progress: true
- 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: 'curl'
- dry-run: false
- - 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
- - name: Upload Crash
- uses: actions/upload-artifact@v3
- if: failure()
- with:
- name: artifacts
- path: ./out/artifacts
|