Skip to content
Snippets Groups Projects
Commit 5cbfac41 authored by Erick Hitter's avatar Erick Hitter
Browse files

Test SAST

parent a1a76332
No related branches found
No related tags found
1 merge request!3WIP: Test SAST
Pipeline #625 passed with warnings
......@@ -42,3 +42,21 @@ PHPunit:PHP7.3:MySQL:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
sast:
image: docker:stable
variables:
DOCKER_DRIVER: overlay2
allow_failure: true
services:
- docker:stable-dind
script:
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
- docker run
--env SAST_CONFIDENCE_LEVEL="${SAST_CONFIDENCE_LEVEL:-3}"
--volume "$PWD:/code"
--volume /var/run/docker.sock:/var/run/docker.sock
"registry.gitlab.com/gitlab-org/security-products/sast:$SP_VERSION" /app/bin/run /code
artifacts:
reports:
sast: gl-sast-report.json
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment