mirror of
https://github.com/lighttransport/tinyusdz.git
synced 2026-01-18 01:11:17 +01:00
29 lines
699 B
YAML
29 lines
699 B
YAML
name: ClusterFuzzLite continuous builds
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev # Use your actual default branch here.
|
|
permissions: read-all
|
|
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
|
|
# Override this with the sanitizers you want.
|
|
# - undefined
|
|
# - memory
|
|
steps:
|
|
- name: Build Fuzzers (${{ matrix.sanitizer }})
|
|
id: build
|
|
uses: google/clusterfuzzlite/actions/build_fuzzers@v1
|
|
with:
|
|
sanitizer: ${{ matrix.sanitizer }}
|
|
upload-build: true
|
|
|