build(deps): bump oss-fuzz-base/base-builder from 56c035f
to 379a89a
in /.clusterfuzzlite
#1993
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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@884713a6c30a92e5e8544c39945cd7cb630abcd1 | |
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@884713a6c30a92e5e8544c39945cd7cb630abcd1 | |
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 |