Skip to content

Fuzzer execution

Fuzzer execution #33

Workflow file for this run

name: Fuzzer execution
on:
workflow_dispatch:
schedule:
- cron: '0 3 * * *' # Every day at 7pm PST/4am CET
jobs:
fuzzer-execution:
name: Fuzzer execution matrix
uses: ./.github/workflows/fuzzing-run.yml
strategy:
fail-fast: false
matrix:
target:
[
{ os: ubuntu, version: 22.04, package-type: DEB },
]
arch: [amd64]
with:
target: ${{ matrix.target.os }}-${{ matrix.target.version }}
arch: ${{ matrix.arch }}
package-type: ${{ matrix.target.package-type }}
timeout-seconds: 3600