2020-12-09 20:13:18 +00:00
|
|
|
name: CIFuzz
|
2022-10-03 10:52:57 +00:00
|
|
|
on: # yamllint disable-line rule:truthy
|
2022-09-06 14:58:50 +00:00
|
|
|
workflow_call:
|
2020-12-09 20:13:18 +00:00
|
|
|
jobs:
|
2021-06-12 10:47:47 +00: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-02 01:47:11 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-06-12 10:47:47 +00:00
|
|
|
if: failure() && steps.build.outcome == 'success'
|
|
|
|
with:
|
|
|
|
name: artifacts
|
|
|
|
path: ./out/artifacts
|