Skip to content

CI: remove static analysis as this is done on upstream #10

CI: remove static analysis as this is done on upstream

CI: remove static analysis as this is done on upstream #10

Workflow file for this run

name: ClusterFuzzLite continuous builds
on:
push:
branches:
- meson # Or your default branch
jobs:
Build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ matrix.sanitizer }}-${{ github.ref }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
sanitizer:
- address
steps:
- uses: actions/checkout@v4
- name: Build Fuzzers (${{ matrix.sanitizer }})
id: build
uses: google/clusterfuzzlite/actions/build_fuzzers@v1
with:
language: c
sanitizer: ${{ matrix.sanitizer }}
upload-build: true