Skip to content

Commit 19f77a9

Browse files
committed
clusterfuzzlite: add workflow file for build
1 parent bd79ed8 commit 19f77a9

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/cflite_build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)