abandon the metalinter because honestly who has the time

This commit is contained in:
Ethan Buchman 2017-12-29 10:30:59 -05:00
parent 38eb32d7bf
commit 70da70d852
2 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,13 @@
GOTOOLS = \ GOTOOLS = \
github.com/mitchellh/gox \ github.com/mitchellh/gox \
github.com/Masterminds/glide \ github.com/Masterminds/glide \
gopkg.in/alecthomas/gometalinter.v2 \
github.com/gogo/protobuf/protoc-gen-gogo \ github.com/gogo/protobuf/protoc-gen-gogo \
github.com/gogo/protobuf/gogoproto github.com/gogo/protobuf/gogoproto
#gopkg.in/alecthomas/gometalinter.v2 \
INCLUDE = -I=. -I=${GOPATH}/src -I=${GOPATH}/src/github.com/gogo/protobuf/protobuf INCLUDE = -I=. -I=${GOPATH}/src -I=${GOPATH}/src/github.com/gogo/protobuf/protobuf
all: protoc install test metalinter all: protoc install test
PACKAGES=$(shell go list ./... | grep -v '/vendor/') PACKAGES=$(shell go list ./... | grep -v '/vendor/')
@ -62,7 +62,7 @@ get_deps:
ensure_tools: ensure_tools:
go get -u -v $(GOTOOLS) go get -u -v $(GOTOOLS)
@ gometalinter.v2 --install #@ gometalinter.v2 --install
get_vendor_deps: ensure_tools get_vendor_deps: ensure_tools
@ rm -rf vendor/ @ rm -rf vendor/

View File

@ -15,7 +15,7 @@ checkout:
test: test:
override: override:
- cd $REPO && make get_vendor_deps && make metalinter && make test_integrations - cd $REPO && make get_vendor_deps && make test_integrations
post: post:
- cd "$REPO" && bash <(curl -s https://codecov.io/bash) -f coverage.txt - cd "$REPO" && bash <(curl -s https://codecov.io/bash) -f coverage.txt
- cd "$REPO" && mv coverage.txt "${CIRCLE_ARTIFACTS}" - cd "$REPO" && mv coverage.txt "${CIRCLE_ARTIFACTS}"