Move cc-test-reporter to local for now

This commit is contained in:
Enrico Stahn 2018-02-28 14:04:55 +11:00
parent 62075f71e6
commit 514090d054
No known key found for this signature in database
GPG key ID: 5263621C269A50DE

View file

@ -13,16 +13,16 @@ jobs:
- run: - run:
name: Setup Code Climate test-reporter name: Setup Code Climate test-reporter
command: | command: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > /bin/cc-test-reporter curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x /bin/cc-test-reporter chmod +x ./cc-test-reporter
- run: curl -L -s https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 -o /go/bin/dep && chmod +x /go/bin/dep - run: curl -L -s https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 -o /go/bin/dep && chmod +x /go/bin/dep
- run: dep ensure -vendor-only - run: dep ensure -vendor-only
- run: - run:
name: Run tests name: Run tests
command: | command: |
cc-test-reporter before-build ./cc-test-reporter before-build
go test -v -coverprofile=c.out ./... go test -v -coverprofile=c.out ./...
cc-test-reporter after-build --exit-code $? ./cc-test-reporter after-build --exit-code $?
lint: lint:
<<: *defaults <<: *defaults