aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorGravatar Leo Neat <leosneat@gmail.com>2020-02-19 15:32:30 -0800
committerGravatar GitHub <noreply@github.com>2020-02-19 15:32:30 -0800
commit39fe0d725b9ae091d4b7ae1caf6eda3b2ff435f5 (patch)
treecfc007ba80ee6218f527b1412b310fe58738819f /docs
parent4d8c828789adaeabac864df15fa42808e7129faf (diff)
[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 'docs')
-rw-r--r--docs/getting-started/continuous_integration.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/getting-started/continuous_integration.md b/docs/getting-started/continuous_integration.md
index 76564611..7e36346d 100644
--- a/docs/getting-started/continuous_integration.md
+++ b/docs/getting-started/continuous_integration.md
@@ -32,7 +32,7 @@ You can integrate CIFuzz into your project using the following steps:
1. Create a `workflows` directory inside of your `.github` directory.
1. Copy the example [`main.yml`](https://github.com/google/oss-fuzz/blob/master/infra/cifuzz/example_main.yml)
file over from the OSS-Fuzz repository to the `workflows` directory.
-1. Change the `project-name` value in `main.yml` from `example` to the name of your OSS-Fuzz project. It is **very important** that you use your OSS-Fuzz project name which is case sensitive. This name
+1. Change the `oss-fuzz-project-name` value in `main.yml` from `example` to the name of your OSS-Fuzz project. It is **very important** that you use your OSS-Fuzz project name which is case sensitive. This name
is the name of your project's subdirectory in the [`projects`](https://github.com/google/oss-fuzz/tree/master/projects) directory of OSS-Fuzz.
Your directory structure should look like the following:
@@ -56,11 +56,12 @@ jobs:
- name: Build Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
- project-name: 'example'
+ oss-fuzz-project-name: 'example'
dry-run: false
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
+ oss-fuzz-project-name: 'example'
fuzz-time: 600
dry-run: false
- name: Upload Crash