mongoose/.github/workflows/cifuzz.yml

37 lines
1009 B
YAML
Raw Normal View History

2021-12-01 06:48:20 +08:00
name: CIFuzz
2023-02-07 20:17:46 +08:00
on:
2024-01-26 23:22:03 +08:00
schedule:
- cron: '0 2 * * *' # run at 2 AM UTC
# Allow manual runs
workflow_dispatch:
2021-12-01 06:48:20 +08:00
jobs:
Fuzzing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with: { fetch-depth: 2 }
2023-02-15 22:25:04 +08:00
- run: if ./test/match_changed_files.sh '^src/' ; then echo GO=1 >> $GITHUB_ENV ; fi
2021-12-01 06:48:20 +08:00
- name: Build Fuzzers
id: build
2023-02-15 22:25:04 +08:00
if: ${{ env.GO == 1 }}
2021-12-01 06:48:20 +08:00
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'mongoose'
dry-run: false
language: c++
- name: Run Fuzzers
2023-02-15 22:25:04 +08:00
if: ${{ env.GO == 1 }}
2021-12-01 06:48:20 +08:00
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'mongoose'
fuzz-seconds: 600
dry-run: false
language: c++
- name: Upload Crash
uses: actions/upload-artifact@v1
2023-02-15 22:25:04 +08:00
if: env.GO == 1 && failure() && steps.build.outcome == 'success'
2021-12-01 06:48:20 +08:00
with:
name: artifacts
path: ./out/artifacts