-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (31 loc) · 1 KB
/
cflite_batch.yml
File metadata and controls
31 lines (31 loc) · 1 KB
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
# SPDX-License-Identifier: PMPL-1.0-or-later
name: ClusterFuzzLite Batch
on:
schedule:
- cron: '0 0 * * 0'
permissions:
contents: read
jobs:
BatchFuzzing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sanitizer: [address, undefined]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- uses: google/clusterfuzzlite/actions/build_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1 # v1
with:
sanitizer: ${{ matrix.sanitizer }}
language: rust
- uses: google/clusterfuzzlite/actions/run_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1 # v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 1800
sanitizer: ${{ matrix.sanitizer }}
mode: batch
output-sarif: true
- uses: github/codeql-action/upload-sarif@c6f931105cb2c34c8f901cc885ba1e2e259cf745 # v3
if: always()
with:
sarif_file: vulnerabilities.sarif