aboutsummaryrefslogtreecommitdiff
path: root/infra/cifuzz/actions/build_fuzzers/action.yml
diff options
context:
space:
mode:
authorLeo Neat <leosneat@gmail.com>2020-02-19 15:32:30 -0800
committerGitHub <noreply@github.com>2020-02-19 15:32:30 -0800
commit39fe0d725b9ae091d4b7ae1caf6eda3b2ff435f5 (patch)
treecfc007ba80ee6218f527b1412b310fe58738819f /infra/cifuzz/actions/build_fuzzers/action.yml
parent4d8c828789adaeabac864df15fa42808e7129faf (diff)
downloadoss-fuzz-39fe0d725b9ae091d4b7ae1caf6eda3b2ff435f5.tar.gz
[CIFuzz] Check crash on most recent OSS-Fuzz build (#3385)
Adds functionality to check if a crash exists in the most recent OSS-Fuzz build. This is necessary to determine if a crash was introduced in the current pull request or existed in the project already. Crashes that are surfaced to the user will be both reproducible and novel to the OSS-Fuzz project.
Diffstat (limited to 'infra/cifuzz/actions/build_fuzzers/action.yml')
-rw-r--r--infra/cifuzz/actions/build_fuzzers/action.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/infra/cifuzz/actions/build_fuzzers/action.yml b/infra/cifuzz/actions/build_fuzzers/action.yml
index cea4c9f4f..e9fb31eaa 100644
--- a/infra/cifuzz/actions/build_fuzzers/action.yml
+++ b/infra/cifuzz/actions/build_fuzzers/action.yml
@@ -2,7 +2,7 @@
name: 'build-fuzzers'
description: "Builds an OSS-Fuzz project's fuzzers."
inputs:
- project-name:
+ oss-fuzz-project-name:
description: 'Name of the corresponding OSS-Fuzz project.'
required: true
dry-run:
@@ -12,5 +12,5 @@ runs:
using: 'docker'
image: 'Dockerfile'
env:
- PROJECT_NAME: ${{ inputs.project-name }}
+ OSS_FUZZ_PROJECT_NAME: ${{ inputs.oss-fuzz-project-name }}
DRY_RUN: ${{ inputs.dry-run}}