2020-01-13 23:25:12 +00:00
|
|
|
# action.yml
|
2020-02-06 21:39:43 +00:00
|
|
|
name: 'run-fuzzers'
|
|
|
|
description: 'Runs fuzz target binaries for a specified length of time.'
|
2020-01-13 23:25:12 +00:00
|
|
|
inputs:
|
2020-02-19 23:32:30 +00:00
|
|
|
oss-fuzz-project-name:
|
|
|
|
description: 'The OSS-Fuzz project name.'
|
|
|
|
required: true
|
2020-01-29 19:03:43 +00:00
|
|
|
fuzz-seconds:
|
|
|
|
description: 'The total time allotted for fuzzing in seconds.'
|
|
|
|
required: true
|
2020-02-06 21:39:43 +00:00
|
|
|
default: 600
|
2020-02-03 23:35:04 +00:00
|
|
|
dry-run:
|
|
|
|
description: 'If set, run the action without actually reporting a failure.'
|
|
|
|
default: false
|
2020-06-12 01:27:01 +00:00
|
|
|
sanitizer:
|
|
|
|
description: 'The sanitizer to run the fuzzers with.'
|
|
|
|
default: 'address'
|
2020-01-13 23:25:12 +00:00
|
|
|
runs:
|
|
|
|
using: 'docker'
|
|
|
|
image: 'Dockerfile'
|
|
|
|
env:
|
2020-02-19 23:32:30 +00:00
|
|
|
OSS_FUZZ_PROJECT_NAME: ${{ inputs.oss-fuzz-project-name }}
|
2020-01-29 19:03:43 +00:00
|
|
|
FUZZ_SECONDS: ${{ inputs.fuzz-seconds }}
|
2020-02-03 23:35:04 +00:00
|
|
|
DRY_RUN: ${{ inputs.dry-run}}
|
2020-06-12 01:27:01 +00:00
|
|
|
SANITIZER: ${{ inputs.sanitizer }}
|