diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2017-12-23 14:18:39 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-12-23 14:18:39 +0000 |
commit | ef82cbef90c59a8d1d59f05d4acf75a2ecbb42c9 (patch) | |
tree | c4db6e5a35da385ea76e5025e4e6d92fbfe27931 /.gitlab-ci.yml | |
parent | 6c967c2b5b9760d0df6bcff70c059858abf971ec (diff) | |
download | gitlab-ce-ef82cbef90c59a8d1d59f05d4acf75a2ecbb42c9.tar.gz |
Remove security checks from static analysis and add sast job
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4b149b13178..6ca2fb471aa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -600,6 +600,14 @@ codequality: artifacts: paths: [codeclimate.json] +sast: + image: registry.gitlab.com/gitlab-org/gl-sast:latest + before_script: [] + script: + - /app/bin/run . + artifacts: + paths: [gl-sast-report.json] + qa:internal: <<: *dedicated-runner <<: *except-docs |