We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd79ed8 commit 19f77a9Copy full SHA for 19f77a9
.github/workflows/cflite_build.yml
@@ -0,0 +1,24 @@
1
+name: ClusterFuzzLite continuous builds
2
+on:
3
+ push:
4
+ branches:
5
+ - meson # Or your default branch
6
+jobs:
7
+ Build:
8
+ runs-on: ubuntu-latest
9
+ concurrency:
10
+ group: ${{ github.workflow }}-${{ matrix.sanitizer }}-${{ github.ref }}
11
+ cancel-in-progress: true
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ sanitizer:
16
+ - address
17
+ steps:
18
+ - name: Build Fuzzers (${{ matrix.sanitizer }})
19
+ id: build
20
+ uses: google/clusterfuzzlite/actions/build_fuzzers@v1
21
+ with:
22
+ language: c
23
+ sanitizer: ${{ matrix.sanitizer }}
24
+ upload-build: true
0 commit comments