...

Text file src/github.com/transparency-dev/merkle/.github/workflows/cflite_build.yml

Documentation: github.com/transparency-dev/merkle/.github/workflows

     1name: ClusterFuzzLite continuous builds
     2on:
     3  push:
     4    branches:
     5      - main  # Use your actual default branch here.
     6permissions: read-all
     7jobs:
     8  Build:
     9   runs-on: ubuntu-latest
    10   concurrency:
    11     group: ${{ github.workflow }}-${{ matrix.sanitizer }}-${{ github.ref }}
    12     cancel-in-progress: true
    13   strategy:
    14     fail-fast: false
    15     matrix:
    16        sanitizer:
    17        - address
    18        # Override this with the sanitizers you want.
    19        # - undefined
    20        # - memory
    21   steps:
    22   - name: Build Fuzzers (${{ matrix.sanitizer }})
    23     id: build
    24     uses: google/clusterfuzzlite/actions/build_fuzzers@1e163f06cba7820da5154ac9fe1a32d7fe6f73a3 # v1
    25     with:
    26        language: go
    27        sanitizer: ${{ matrix.sanitizer }}
    28        upload-build: true

View as plain text