abandon the metalinter because honestly who has the time
This commit is contained in:
parent
38eb32d7bf
commit
70da70d852
6
Makefile
6
Makefile
|
@ -1,13 +1,13 @@
|
|||
GOTOOLS = \
|
||||
github.com/mitchellh/gox \
|
||||
github.com/Masterminds/glide \
|
||||
gopkg.in/alecthomas/gometalinter.v2 \
|
||||
github.com/gogo/protobuf/protoc-gen-gogo \
|
||||
github.com/gogo/protobuf/gogoproto
|
||||
#gopkg.in/alecthomas/gometalinter.v2 \
|
||||
|
||||
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/')
|
||||
|
||||
|
@ -62,7 +62,7 @@ get_deps:
|
|||
|
||||
ensure_tools:
|
||||
go get -u -v $(GOTOOLS)
|
||||
@ gometalinter.v2 --install
|
||||
#@ gometalinter.v2 --install
|
||||
|
||||
get_vendor_deps: ensure_tools
|
||||
@ rm -rf vendor/
|
||||
|
|
|
@ -15,7 +15,7 @@ checkout:
|
|||
|
||||
test:
|
||||
override:
|
||||
- cd $REPO && make get_vendor_deps && make metalinter && make test_integrations
|
||||
- cd $REPO && make get_vendor_deps && make test_integrations
|
||||
post:
|
||||
- cd "$REPO" && bash <(curl -s https://codecov.io/bash) -f coverage.txt
|
||||
- cd "$REPO" && mv coverage.txt "${CIRCLE_ARTIFACTS}"
|
||||
|
|
Loading…
Reference in New Issue