Skip to content

build(deps): bump oss-fuzz-base/base-builder from e808bf9 to 36068cd in /.clusterfuzzlite #828

build(deps): bump oss-fuzz-base/base-builder from e808bf9 to 36068cd in /.clusterfuzzlite

build(deps): bump oss-fuzz-base/base-builder from e808bf9 to 36068cd in /.clusterfuzzlite #828

Workflow file for this run

---
name: Pull-Request Fuzzing
on:
workflow_dispatch:
pull_request:
permissions:
contents: read
jobs:
fuzz_pr:
# skip fuzzing for dependabot PRs since dependabot does not have access to secrets
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}-${{ matrix.sanitizer }}-${{ github.workflow }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
sanitizer: [address, undefined]
steps:
- name: Build Fuzzers (${{ matrix.sanitizer }})
uses: google/clusterfuzzlite/actions/build_fuzzers@1e163f06cba7820da5154ac9fe1a32d7fe6f73a3
with:
language: c++
github-token: ${{ secrets.GITHUB_TOKEN }}
sanitizer: ${{ matrix.sanitizer }}
storage-repo: https://${{ secrets.METRICS_TOKEN }}@github.com/philips-software/amp-embedded-infra-lib-metrics.git
- name: Run Fuzzers (${{ matrix.sanitizer }})
uses: google/clusterfuzzlite/actions/run_fuzzers@1e163f06cba7820da5154ac9fe1a32d7fe6f73a3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 300
mode: code-change
sanitizer: ${{ matrix.sanitizer }}
storage-repo: https://${{ secrets.METRICS_TOKEN }}@github.com/philips-software/amp-embedded-infra-lib-metrics.git