summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordappelt <dappelt@gitlab.com>2019-08-16 17:42:26 +0200
committerdappelt <dappelt@gitlab.com>2019-08-20 15:56:04 +0200
commitd1fb606ef4f08ddccda7b29381dca8d0a60ef438 (patch)
tree8c24d190eea20bad138795810eb75c53df393e64
parent648e5a942d4a8c66631354e05aa3f59206576dea (diff)
downloadgitlab-ce-da/enable-dast-using-template.tar.gz
-rw-r--r--.gitlab/ci/reports.gitlab-ci.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab/ci/reports.gitlab-ci.yml b/.gitlab/ci/reports.gitlab-ci.yml
index ca55bbd32a7..fc0e93ee9f1 100644
--- a/.gitlab/ci/reports.gitlab-ci.yml
+++ b/.gitlab/ci/reports.gitlab-ci.yml
@@ -2,6 +2,7 @@ include:
- template: Code-Quality.gitlab-ci.yml
- template: Security/SAST.gitlab-ci.yml
- template: Security/Dependency-Scanning.gitlab-ci.yml
+ - template: Security/DAST.gitlab-ci.yml
code_quality:
extends: .dedicated-no-docs
@@ -24,3 +25,12 @@ dependency_scanning:
tags: []
before_script: []
cache: {}
+
+dast:
+ extends: .dedicated-no-docs
+ stage: qa
+ dependencies:
+ - review-deploy
+ before_script:
+ - export DAST_WEBSITE="$(cat review_app_url.txt)"
+ cache: {}