-
Notifications
You must be signed in to change notification settings - Fork 30
42 lines (39 loc) · 1.35 KB
/
fuzzing-cron.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
name: Fuzzing Cron Tasks
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *" # Once a day at midnight
permissions:
contents: read
jobs:
fuzz_prune:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
uses: google/clusterfuzzlite/actions/build_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1
with:
language: c++
- name: Run Fuzzers
uses: google/clusterfuzzlite/actions/run_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 600
mode: prune
storage-repo: https://${{ secrets.METRICS_TOKEN }}@github.com/philips-software/amp-embedded-infra-lib-metrics.git
fuzz_coverage:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
uses: google/clusterfuzzlite/actions/build_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1
with:
language: c++
sanitizer: coverage
- name: Run Fuzzers
uses: google/clusterfuzzlite/actions/run_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 600
mode: coverage
sanitizer: coverage
storage-repo: https://${{ secrets.METRICS_TOKEN }}@github.com/philips-software/amp-embedded-infra-lib-metrics.git