Merge branch 'pipeline-feature' into 'dev'

Setting of code quality check in Gitlab pipeline

See merge request sa4-2020/the-sanmarinoes/backend!10
This commit is contained in:
Claudio Maggioni 2020-02-28 09:45:47 +01:00
commit ce939cb7ea

17
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,17 @@
code_quality:
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 SOURCE_CODE="$PWD"
--volume "$PWD":/code
--volume /var/run/docker.sock:/var/run/docker.sock
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
artifacts:
reports:
codequality: gl-code-quality-report.json