Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin test reporter version #448

Merged
merged 2 commits into from Mar 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions .circleci/config.yml
Expand Up @@ -6,6 +6,12 @@ steps: &steps
steps:
- checkout

- run:
name: Install coverage reporter
command: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-0.5.1-linux-amd64 > cc-test-reporter
chmod +x cc-test-reporter

- restore_cache:
keys:
- dependencies-{{ checksum "Gemfile.lock" }}
Expand Down
4 changes: 0 additions & 4 deletions docker/Dockerfile
Expand Up @@ -62,8 +62,4 @@ RUN apt-get update && apt-get install -y --no-install-recommends \

ENV BUNDLE_SILENCE_ROOT_WARNING=1

RUN TEST_REPORTER_URL=https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 \
&& wget -O /usr/local/bin/cc-test-reporter $TEST_REPORTER_URL \
&& chmod +x /usr/local/bin/cc-test-reporter

WORKDIR /byebug