-
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (32 loc) · 1.02 KB
/
Copy pathcflite_batch.yml
File metadata and controls
32 lines (32 loc) · 1.02 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
32
# SPDX-License-Identifier: MPL-2.0
name: ClusterFuzzLite Batch
on:
schedule:
- cron: '0 0 * * 0'
permissions:
contents: read
jobs:
BatchFuzzing:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
sanitizer: [address, undefined]
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # 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@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v3
if: always()
with:
sarif_file: vulnerabilities.sarif