2020-12-09 12:13:18 -08:00
|
|
|
name: CIFuzz
|
2022-10-03 03:52:57 -07:00
|
|
|
on: # yamllint disable-line rule:truthy
|
2022-09-06 07:58:50 -07:00
|
|
|
workflow_call:
|
2020-12-09 12:13:18 -08:00
|
|
|
jobs:
|
2021-06-12 03:47:47 -07:00
|
|
|
Fuzzing:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Build Fuzzers
|
|
|
|
id: build
|
|
|
|
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
|
|
|
with:
|
|
|
|
oss-fuzz-project-name: "prometheus"
|
|
|
|
dry-run: false
|
|
|
|
- name: Run Fuzzers
|
|
|
|
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
|
|
|
with:
|
|
|
|
oss-fuzz-project-name: "prometheus"
|
|
|
|
fuzz-seconds: 600
|
|
|
|
dry-run: false
|
|
|
|
- name: Upload Crash
|
2022-04-01 18:47:11 -07:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-06-12 03:47:47 -07:00
|
|
|
if: failure() && steps.build.outcome == 'success'
|
|
|
|
with:
|
|
|
|
name: artifacts
|
|
|
|
path: ./out/artifacts
|