Skip to content
Snippets Groups Projects
Commit 91506205 authored by jurgenhaas's avatar jurgenhaas
Browse files

Handle new gitlab SAST test for spotbugs

parent 5eca9c60
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@ variables:
DISABLE_GITLAB_CI_TEST_SAST_NODEJS_SCAN: 1
DISABLE_GITLAB_CI_TEST_SAST_PHPCS_SECURITY_AUDIT: 1
DISABLE_GITLAB_CI_TEST_SAST_SEMGREP: 1
DISABLE_GITLAB_CI_TEST_SAST_SPOTBUGS: 1
DISABLE_GITLAB_CI_TEST_SECRET_DETECTION: 1
ENVIRONMENT_NAME: ${PROJECT_NAME}/$CI_COMMIT_REF_NAME
ENVIRONMENT_URL: https://www.example.com/$SITE_NAME
......
......@@ -96,6 +96,16 @@ semgrep-sast:
rules:
- if: '$DISABLE_GITLAB_CI_TEST_SAST_SEMGREP != "1"'
spotbugs-sast:
<<: *test_gitlab_default
artifacts:
name: spotbugs-sast
paths: ['gl-sast-report.json']
reports:
sast: gl-sast-report.json
rules:
- if: '$DISABLE_GITLAB_CI_TEST_SAST_SPOTBUGS != "1"'
# ==================================== Secret Detection
secret_detection:
<<: *test_gitlab_default
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment