summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2018-01-10 08:00:48 +0000
committerRobert Speicher <rspeicher@gmail.com>2018-01-15 13:17:44 -0600
commit81e1cb0d994f9efcac1abed51dc5475bd97c1a1f (patch)
tree3ca9fa8e7a7ee6a3620cf6393cdde7805dd19aef
parent2fa478710d44fb06ff76454bcc8690a3aea6865f (diff)
downloadgitlab-ce-81e1cb0d994f9efcac1abed51dc5475bd97c1a1f.tar.gz
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
-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]
```