- GOTOOLS = \
- github.com/mitchellh/gox \
- github.com/Masterminds/glide \
- github.com/tcnksm/ghr \
- gopkg.in/alecthomas/gometalinter.v2
- GOTOOLS_CHECK = gox glide ghr gometalinter.v2
- PACKAGES=$(shell go list ./... | grep -v '/vendor/')
- BUILD_TAGS?=tendermint
- TMHOME = $${TMHOME:-$$HOME/.tendermint}
- BUILD_FLAGS = -ldflags "-X github.com/tendermint/tendermint/version.GitCommit=`git rev-parse --short HEAD`"
-
- all: check build test install metalinter
-
- check: check_tools get_vendor_deps
-
-
- ########################################
- ### Build
-
- build:
- go build $(BUILD_FLAGS) -o build/tendermint ./cmd/tendermint/
-
- build_race:
- go build -race $(BUILD_FLAGS) -o build/tendermint ./cmd/tendermint
-
- # dist builds binaries for all platforms and packages them for distribution
- dist:
- @BUILD_TAGS='$(BUILD_TAGS)' sh -c "'$(CURDIR)/scripts/dist.sh'"
-
- install:
- go install $(BUILD_FLAGS) ./cmd/tendermint
-
-
- ########################################
- ### Tools & dependencies
-
- check_tools:
- @# https://stackoverflow.com/a/25668869
- @echo "Found tools: $(foreach tool,$(GOTOOLS_CHECK),\
- $(if $(shell which $(tool)),$(tool),$(error "No $(tool) in PATH")))"
-
- get_tools:
- @echo "--> Installing tools"
- go get -u -v $(GOTOOLS)
- @gometalinter.v2 --install
-
- update_tools:
- @echo "--> Updating tools"
- @go get -u $(GOTOOLS)
-
- get_vendor_deps:
- @rm -rf vendor/
- @echo "--> Running glide install"
- @glide install
-
- draw_deps:
- @# requires brew install graphviz or apt-get install graphviz
- go get github.com/RobotsAndPencils/goviz
- @goviz -i github.com/tendermint/tendermint/cmd/tendermint -d 3 | dot -Tpng -o dependency-graph.png
-
-
- ########################################
- ### Testing
-
- test:
- @echo "--> Running go test"
- @go test $(PACKAGES)
-
- test_race:
- @echo "--> Running go test --race"
- @go test -v -race $(PACKAGES)
-
- test_integrations:
- @bash ./test/test.sh
-
- test_release:
- @go test -tags release $(PACKAGES)
-
- test100:
- @for i in {1..100}; do make test; done
-
- vagrant_test:
- vagrant up
- vagrant ssh -c 'make install'
- vagrant ssh -c 'make test_race'
- vagrant ssh -c 'make test_integrations'
-
-
- ########################################
- ### Formatting, linting, and vetting
-
- fmt:
- @go fmt ./...
-
- metalinter:
- @echo "--> Running linter"
- gometalinter.v2 --vendor --deadline=600s --disable-all \
- --enable=deadcode \
- --enable=gosimple \
- --enable=misspell \
- --enable=safesql \
- ./...
- #--enable=gas \
- #--enable=maligned \
- #--enable=dupl \
- #--enable=errcheck \
- #--enable=goconst \
- #--enable=gocyclo \
- #--enable=goimports \
- #--enable=golint \ <== comments on anything exported
- #--enable=gotype \
- #--enable=ineffassign \
- #--enable=interfacer \
- #--enable=megacheck \
- #--enable=staticcheck \
- #--enable=structcheck \
- #--enable=unconvert \
- #--enable=unparam \
- #--enable=unused \
- #--enable=varcheck \
- #--enable=vet \
- #--enable=vetshadow \
-
- metalinter_all:
- @echo "--> Running linter (all)"
- gometalinter.v2 --vendor --deadline=600s --enable-all --disable=lll ./...
-
-
- # To avoid unintended conflicts with file names, always add to .PHONY
- # unless there is a reason not to.
- # https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html
- .PHONY: check build build_race dist install check_tools get_tools update_tools get_vendor_deps draw_deps test test_race test_integrations test_release test100 vagrant_test fmt metalinter metalinter_all
|