summaryrefslogtreecommitdiff
path: root/.gitlab/ci_templates/sast.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab/ci_templates/sast.yml')
-rw-r--r--.gitlab/ci_templates/sast.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitlab/ci_templates/sast.yml b/.gitlab/ci_templates/sast.yml
new file mode 100644
index 0000000000..204df7183c
--- /dev/null
+++ b/.gitlab/ci_templates/sast.yml
@@ -0,0 +1,17 @@
+# https://docs.gitlab.com/user/application_security/sast/
+include:
+ - template: Jobs/SAST.latest.gitlab-ci.yml
+
+sast: &sast
+ stage: test
+
+ # SAST tools only support x64
+ tags:
+ - amd64
+
+ # Don't wait, since this has no dependencies.
+ # https://docs.gitlab.com/ci/yaml/#needs
+ needs: []
+
+gitlab-advanced-sast:
+ <<: *sast