mirror of https://github.com/google/oss-fuzz.git
17 lines
463 B
YAML
17 lines
463 B
YAML
# action.yml
|
|
name: 'build-fuzzers'
|
|
description: "Builds an OSS-Fuzz project's fuzzers."
|
|
inputs:
|
|
oss-fuzz-project-name:
|
|
description: 'Name of the corresponding OSS-Fuzz project.'
|
|
required: true
|
|
dry-run:
|
|
description: 'If set, run the action without actually reporting a failure.'
|
|
default: false
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
env:
|
|
OSS_FUZZ_PROJECT_NAME: ${{ inputs.oss-fuzz-project-name }}
|
|
DRY_RUN: ${{ inputs.dry-run}}
|