Skip to content
Snippets Groups Projects
Commit 7d6083d8 authored by Erick Hitter's avatar Erick Hitter
Browse files
parent 57044f05
No related branches found
No related tags found
1 merge request!4WIP: Add additional CI checks
Pipeline #220 passed with warnings
...@@ -63,4 +63,22 @@ build: ...@@ -63,4 +63,22 @@ build:
- make - make
artifacts: artifacts:
paths: paths:
- gitlab-runner-do-monitor/ - gitlab-runner-do-monitor/
\ No newline at end of file
# GitLab CI tools: https://docs.gitlab.com/ee/ci/examples/README.html
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:
paths: [gl-code-quality-report.json]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment