Fuzzer execution #33
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: 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 |