31 lines
862 B
YAML
31 lines
862 B
YAML
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
# This specific template is located at:
|
|
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Security/DAST-On-Demand-API-Scan.gitlab-ci.yml
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
- deploy
|
|
- dast
|
|
|
|
variables:
|
|
SECURE_ANALYZERS_PREFIX: "$CI_TEMPLATE_REGISTRY_HOST/security-products"
|
|
DAST_API_VERSION: "2"
|
|
DAST_API_IMAGE_SUFFIX: ""
|
|
DAST_API_IMAGE: api-security
|
|
|
|
dast:
|
|
stage: dast
|
|
image: $SECURE_ANALYZERS_PREFIX/$DAST_API_IMAGE:$DAST_API_VERSION$DAST_API_IMAGE_SUFFIX
|
|
allow_failure: true
|
|
script:
|
|
- /peach/analyzer-dast-api
|
|
artifacts:
|
|
when: always
|
|
paths:
|
|
- gl-assets
|
|
- gl-dast-api-report.json
|
|
- gl-*.log
|
|
reports:
|
|
dast: gl-dast-api-report.json
|