Browse Source

linter: enable in CI & make deterministic

pull/1780/head
Zach Ramsay 7 years ago
parent
commit
d6e821ea4f
2 changed files with 6 additions and 7 deletions
  1. +5
    -5
      Makefile
  2. +1
    -2
      circle.yml

+ 5
- 5
Makefile View File

@ -1,7 +1,7 @@
GOTOOLS = \
github.com/mitchellh/gox \
github.com/Masterminds/glide \
github.com/alecthomas/gometalinter \
gopkg.in/alecthomas/gometalinter.v2 \
github.com/ckaznocha/protoc-gen-lint \
github.com/gogo/protobuf/protoc-gen-gogo \
github.com/gogo/protobuf/gogoproto
@ -62,7 +62,7 @@ get_deps:
ensure_tools:
go get -u -v $(GOTOOLS)
@gometalinter --install
@gometalinter.v2 --install
get_vendor_deps: ensure_tools
@rm -rf vendor/
@ -71,11 +71,11 @@ get_vendor_deps: ensure_tools
metalinter:
protoc $(INCLUDE) --lint_out=. types/*.proto
gometalinter --vendor --deadline=600s --enable-all --disable=lll ./...
gometalinter.v2 --vendor --deadline=600s --enable-all --disable=lll ./...
metalinter_test:
protoc $(INCLUDE) --lint_out=. types/*.proto
gometalinter --vendor --deadline=600s --disable-all \
#protoc $(INCLUDE) --lint_out=. types/*.proto
gometalinter.v2 --vendor --deadline=600s --disable-all \
--enable=maligned \
--enable=deadcode \
--enable=goconst \


+ 1
- 2
circle.yml View File

@ -2,7 +2,6 @@ machine:
environment:
GOPATH: /home/ubuntu/.go_workspace
REPO: $GOPATH/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME
GO15VENDOREXPERIMENT: 1
hosts:
circlehost: 127.0.0.1
localhost: 127.0.0.1
@ -16,7 +15,7 @@ checkout:
test:
override:
- cd $REPO && make get_vendor_deps && make test_integrations
- cd $REPO && make get_vendor_deps && make metalinter_test && make test_integrations
post:
- cd "$REPO" && bash <(curl -s https://codecov.io/bash) -f coverage.txt
- cd "$REPO" && mv coverage.txt "${CIRCLE_ARTIFACTS}"

Loading…
Cancel
Save