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 6741d36Copy full SHA for 6741d36
.github/workflows/cflite_build.yml
@@ -0,0 +1,25 @@
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
+ - uses: actions/checkout@v4
19
+ - name: Build Fuzzers (${{ matrix.sanitizer }})
20
+ id: build
21
+ uses: google/clusterfuzzlite/actions/build_fuzzers@v1
22
+ with:
23
+ language: c
24
+ sanitizer: ${{ matrix.sanitizer }}
25
+ upload-build: true
0 commit comments