Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/ci
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2018-01-10 11:00:48 +0300
committerRobert Speicher <rspeicher@gmail.com>2018-01-15 22:17:44 +0300
commit81e1cb0d994f9efcac1abed51dc5475bd97c1a1f (patch)
tree3ca9fa8e7a7ee6a3620cf6393cdde7805dd19aef /doc/ci
parent2fa478710d44fb06ff76454bcc8690a3aea6865f (diff)
Merge branch 'dz-improve-code-quality-docs' into 'master'
Use 0.69 version of codeclimate image for CI code quality docs See merge request gitlab-org/gitlab-ce!16319
Diffstat (limited to 'doc/ci')
-rw-r--r--doc/ci/examples/code_climate.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/ci/examples/code_climate.md b/doc/ci/examples/code_climate.md
index 6a5821762cc..f919ed3c797 100644
--- a/doc/ci/examples/code_climate.md
+++ b/doc/ci/examples/code_climate.md
@@ -16,7 +16,8 @@ codequality:
- docker:dind
script:
- docker pull codeclimate/codeclimate
- - docker run --env CODECLIMATE_CODE="$PWD" --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate analyze -f json > codeclimate.json || true
+ - docker run --env CODECLIMATE_CODE="$PWD" --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate:0.69.0 init
+ - docker run --env CODECLIMATE_CODE="$PWD" --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate:0.69.0 analyze -f json > codeclimate.json || true
artifacts:
paths: [codeclimate.json]
```