Skip to content
Snippets Groups Projects
Commit 5a5b6699 authored by Tristan Van Berkom's avatar Tristan Van Berkom
Browse files

.gitlab-ci.yml: Moving code_quality job into tests phase

This job always takes a long time and does not really depend
on the artifacts in the 'test' phase, moving it to the 'test'
phase will reduce overall CI time.
parent 539963e3
No related branches found
No related tags found
1 merge request!737Tristan/restore post merge ci
Pipeline #28733322 passed
...@@ -153,15 +153,11 @@ docs: ...@@ -153,15 +153,11 @@ docs:
- public/ - public/
#####################################################
# Post stage #
#####################################################
# Check code quality with gitlab's built-in feature. # Check code quality with gitlab's built-in feature.
# #
code_quality: code_quality:
image: docker:stable image: docker:stable
stage: post stage: test
variables: variables:
DOCKER_DRIVER: overlay2 DOCKER_DRIVER: overlay2
allow_failure: true allow_failure: true
...@@ -177,6 +173,10 @@ code_quality: ...@@ -177,6 +173,10 @@ code_quality:
artifacts: artifacts:
paths: [gl-code-quality-report.json] paths: [gl-code-quality-report.json]
#####################################################
# Post stage #
#####################################################
analysis: analysis:
stage: post stage: post
script: script:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment