summaryrefslogtreecommitdiff
path: root/doc/user/application_security/coverage_fuzzing
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-01-25 18:09:03 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-01-25 18:09:03 +0000
commit899bb5c4a9e249e2051bb564eeb17d1456b5ae8d (patch)
tree3938e810630ce69c80284aed48f1784b99a57806 /doc/user/application_security/coverage_fuzzing
parent10cc2d7a724da4c74b9be7efdbd013c1744047ee (diff)
downloadgitlab-ce-899bb5c4a9e249e2051bb564eeb17d1456b5ae8d.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/user/application_security/coverage_fuzzing')
-rw-r--r--doc/user/application_security/coverage_fuzzing/index.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/user/application_security/coverage_fuzzing/index.md b/doc/user/application_security/coverage_fuzzing/index.md
index 469945246c1..d834fc1cd52 100644
--- a/doc/user/application_security/coverage_fuzzing/index.md
+++ b/doc/user/application_security/coverage_fuzzing/index.md
@@ -44,8 +44,18 @@ provided as part of your GitLab installation.
To do so, add the following to your `.gitlab-ci.yml` file:
```yaml
+stages:
+ - fuzz
+
include:
- template: Coverage-Fuzzing.gitlab-ci.yml
+
+my_fuzz_target:
+ extends: .fuzz_base
+ script:
+ # Build your fuzz target binary in these steps, then run it with gitlab-cov-fuzz>
+ # See our example repos for how you could do this with any of our supported languages
+ - ./gitlab-cov-fuzz run --regression=$REGRESSION -- <your fuzz target>
```
The included template makes available the [hidden job](../../../ci/yaml/README.md#hide-jobs)