Skip to content

Commit

Permalink
[clusterfuzzlite] Allow to use report-{ooms,timeouts} in GH Action
Browse files Browse the repository at this point in the history
  • Loading branch information
ligurio committed May 27, 2024
1 parent 5725c11 commit 7f117d9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions infra/cifuzz/external-actions/run_fuzzers/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ inputs:
description: "Whether to output fuzzing results to SARIF."
required: false
default: false
report-timeouts:
description: "Whether to report fails due to timeout."
required: false
default: false
report-ooms:
description: "Whether to report fails due to OOM."
required: false
default: false
runs:
using: 'docker'
image: '../../../run_fuzzers.Dockerfile'
Expand All @@ -85,3 +93,5 @@ runs:
CFL_PLATFORM: 'github'
PARALLEL_FUZZING: ${{ inputs.parallel-fuzzing }}
OUTPUT_SARIF: ${{ inputs.output-sarif }}
REPORT_TIMEOUTS: ${{ inputs.report-timeouts }}
REPORT_OOMS: ${{ inputs.report-ooms}}

0 comments on commit 7f117d9

Please sign in to comment.