2018-07-19 21:16:48 +00:00
|
|
|
# Copyright 2018 Tendermint. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-07-11 00:12:30 +00:00
|
|
|
PACKAGES=$(shell go list ./... | grep -v '/vendor/')
|
|
|
|
COMMIT_HASH := $(shell git rev-parse --short HEAD)
|
|
|
|
BUILD_FLAGS = -tags netgo -ldflags "-X github.com/cosmos/ethermint/version.GitCommit=${COMMIT_HASH}"
|
2018-07-12 23:22:19 +00:00
|
|
|
DOCKER_TAG = unstable
|
|
|
|
DOCKER_IMAGE = tendermint/ethermint
|
2018-07-19 21:16:48 +00:00
|
|
|
ETHERMINT_DAEMON_BINARY = emintd
|
|
|
|
ETHERMINT_CLI_BINARY = emintcli
|
2018-07-11 00:12:30 +00:00
|
|
|
|
2018-07-13 20:41:17 +00:00
|
|
|
all: tools deps install
|
2018-07-11 00:12:30 +00:00
|
|
|
|
2018-07-19 21:16:48 +00:00
|
|
|
#######################
|
|
|
|
### Build / Install ###
|
|
|
|
#######################
|
2018-07-11 00:12:30 +00:00
|
|
|
|
|
|
|
build:
|
|
|
|
ifeq ($(OS),Windows_NT)
|
2018-07-19 21:16:48 +00:00
|
|
|
go build $(BUILD_FLAGS) -o build/$(ETHERMINT_DAEMON_BINARY).exe ./cmd/ethermintd
|
|
|
|
go build $(BUILD_FLAGS) -o build/$(ETHERMINT_CLI_BINARY).exe ./cmd/ethermintcli
|
2018-07-11 00:12:30 +00:00
|
|
|
else
|
2018-07-19 21:16:48 +00:00
|
|
|
go build $(BUILD_FLAGS) -o build/$(ETHERMINT_DAEMON_BINARY) ./cmd/ethermintd/
|
|
|
|
go build $(BUILD_FLAGS) -o build/$(ETHERMINT_CLI_BINARY) ./cmd/ethermintcli/
|
2018-07-11 00:12:30 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
install:
|
2018-07-19 21:16:48 +00:00
|
|
|
go install $(BUILD_FLAGS) ./cmd/ethermintd
|
|
|
|
go install $(BUILD_FLAGS) ./cmd/ethermintcli
|
2018-07-11 00:12:30 +00:00
|
|
|
|
2018-07-11 16:15:39 +00:00
|
|
|
clean:
|
2018-07-26 13:36:01 +00:00
|
|
|
@rm -rf ./build ./vendor
|
2018-07-11 00:12:30 +00:00
|
|
|
|
|
|
|
update-tools:
|
2018-07-26 13:36:01 +00:00
|
|
|
@echo "--> Updating golang dependencies"
|
2018-07-11 00:12:30 +00:00
|
|
|
go get -u -v $(DEP) $(GOLINT) $(GOMETALINTER) $(UNCONVERT) $(INEFFASSIGN) $(MISSPELL) $(ERRCHECK) $(UNPARAM) $(GOCYCLO)
|
|
|
|
|
2018-07-19 21:16:48 +00:00
|
|
|
############################
|
|
|
|
### Tools / Dependencies ###
|
|
|
|
############################
|
|
|
|
|
2018-07-26 13:36:01 +00:00
|
|
|
##########################################################
|
|
|
|
### TODO: Move tool depedencies to a separate makefile ###
|
|
|
|
##########################################################
|
|
|
|
|
|
|
|
DEP = github.com/golang/dep/cmd/dep
|
|
|
|
GOLINT = github.com/tendermint/lint/golint
|
|
|
|
GOMETALINTER = gopkg.in/alecthomas/gometalinter.v2
|
|
|
|
UNCONVERT = github.com/mdempsky/unconvert
|
|
|
|
INEFFASSIGN = github.com/gordonklaus/ineffassign
|
|
|
|
MISSPELL = github.com/client9/misspell/cmd/misspell
|
|
|
|
ERRCHECK = github.com/kisielk/errcheck
|
|
|
|
UNPARAM = mvdan.cc/unparam
|
|
|
|
GOCYCLO = github.com/alecthomas/gocyclo
|
|
|
|
|
|
|
|
DEP_CHECK := $(shell command -v dep 2> /dev/null)
|
|
|
|
GOLINT_CHECK := $(shell command -v golint 2> /dev/null)
|
|
|
|
GOMETALINTER_CHECK := $(shell command -v gometalinter.v2 2> /dev/null)
|
|
|
|
UNCONVERT_CHECK := $(shell command -v unconvert 2> /dev/null)
|
|
|
|
INEFFASSIGN_CHECK := $(shell command -v ineffassign 2> /dev/null)
|
|
|
|
MISSPELL_CHECK := $(shell command -v misspell 2> /dev/null)
|
|
|
|
ERRCHECK_CHECK := $(shell command -v errcheck 2> /dev/null)
|
|
|
|
UNPARAM_CHECK := $(shell command -v unparam 2> /dev/null)
|
|
|
|
GOCYCLO_CHECK := $(shell command -v gocyclo 2> /dev/null)
|
|
|
|
|
2018-07-13 20:41:17 +00:00
|
|
|
tools:
|
2018-07-13 20:58:22 +00:00
|
|
|
ifdef DEP_CHECK
|
2018-07-19 21:16:48 +00:00
|
|
|
@echo "Dep is already installed. Run 'make update-tools' to update."
|
2018-07-13 20:58:22 +00:00
|
|
|
else
|
2018-07-26 13:36:01 +00:00
|
|
|
@echo "--> Installing dep"
|
2018-07-13 20:58:22 +00:00
|
|
|
go get -v $(DEP)
|
|
|
|
endif
|
|
|
|
ifdef GOLINT_CHECK
|
2018-07-19 21:16:48 +00:00
|
|
|
@echo "Golint is already installed. Run 'make update-tools' to update."
|
2018-07-13 20:58:22 +00:00
|
|
|
else
|
2018-07-26 13:36:01 +00:00
|
|
|
@echo "--> Installing golint"
|
2018-07-13 20:58:22 +00:00
|
|
|
go get -v $(GOLINT)
|
|
|
|
endif
|
|
|
|
ifdef GOMETALINTER_CHECK
|
2018-07-19 21:16:48 +00:00
|
|
|
@echo "Gometalinter.v2 is already installed. Run 'make update-tools' to update."
|
2018-07-13 20:58:22 +00:00
|
|
|
else
|
2018-07-26 13:36:01 +00:00
|
|
|
@echo "--> Installing gometalinter.v2"
|
2018-07-13 20:58:22 +00:00
|
|
|
go get -v $(GOMETALINTER)
|
|
|
|
endif
|
|
|
|
ifdef UNCONVERT_CHECK
|
2018-07-19 21:16:48 +00:00
|
|
|
@echo "Unconvert is already installed. Run 'make update-tools' to update."
|
2018-07-13 20:58:22 +00:00
|
|
|
else
|
2018-07-26 13:36:01 +00:00
|
|
|
@echo "--> Installing unconvert"
|
2018-07-13 20:58:22 +00:00
|
|
|
go get -v $(UNCONVERT)
|
|
|
|
endif
|
|
|
|
ifdef INEFFASSIGN_CHECK
|
2018-07-19 21:16:48 +00:00
|
|
|
@echo "Ineffassign is already installed. Run 'make update-tools' to update."
|
2018-07-13 20:58:22 +00:00
|
|
|
else
|
2018-07-26 13:36:01 +00:00
|
|
|
@echo "--> Installing ineffassign"
|
2018-07-13 20:58:22 +00:00
|
|
|
go get -v $(INEFFASSIGN)
|
|
|
|
endif
|
|
|
|
ifdef MISSPELL_CHECK
|
2018-07-19 21:16:48 +00:00
|
|
|
@echo "misspell is already installed. Run 'make update-tools' to update."
|
2018-07-13 20:58:22 +00:00
|
|
|
else
|
2018-07-26 13:36:01 +00:00
|
|
|
@echo "--> Installing misspell"
|
2018-07-13 20:58:22 +00:00
|
|
|
go get -v $(MISSPELL)
|
|
|
|
endif
|
|
|
|
ifdef ERRCHECK_CHECK
|
2018-07-19 21:16:48 +00:00
|
|
|
@echo "errcheck is already installed. Run 'make update-tools' to update."
|
2018-07-13 20:58:22 +00:00
|
|
|
else
|
2018-07-26 13:36:01 +00:00
|
|
|
@echo "--> Installing errcheck"
|
2018-07-13 20:58:22 +00:00
|
|
|
go get -v $(ERRCHECK)
|
|
|
|
endif
|
|
|
|
ifdef UNPARAM_CHECK
|
2018-07-19 21:16:48 +00:00
|
|
|
@echo "unparam is already installed. Run 'make update-tools' to update."
|
2018-07-13 20:58:22 +00:00
|
|
|
else
|
2018-07-26 13:36:01 +00:00
|
|
|
@echo "--> Installing unparam"
|
2018-07-13 20:58:22 +00:00
|
|
|
go get -v $(UNPARAM)
|
|
|
|
endif
|
|
|
|
ifdef GOCYCLO_CHECK
|
2018-07-19 21:16:48 +00:00
|
|
|
@echo "goyclo is already installed. Run 'make update-tools' to update."
|
2018-07-13 20:58:22 +00:00
|
|
|
else
|
2018-07-26 13:36:01 +00:00
|
|
|
@echo "--> Installing goyclo"
|
2018-07-13 20:58:22 +00:00
|
|
|
go get -v $(GOCYCLO)
|
|
|
|
endif
|
2018-07-11 00:12:30 +00:00
|
|
|
|
2018-07-13 20:41:17 +00:00
|
|
|
deps:
|
2018-07-11 00:12:30 +00:00
|
|
|
@rm -rf vendor/
|
|
|
|
@echo "--> Running dep ensure"
|
|
|
|
@dep ensure -v
|
|
|
|
|
2018-07-19 21:16:48 +00:00
|
|
|
#######################
|
|
|
|
### Testing / Misc. ###
|
|
|
|
#######################
|
|
|
|
|
2018-07-26 13:36:01 +00:00
|
|
|
TEST_PACKAGES=$(shell go list ./... | grep -v github.com/cosmos/ethermint/cmd/test)
|
|
|
|
|
|
|
|
test: test-unit
|
|
|
|
|
|
|
|
test-unit:
|
|
|
|
@go test -v $(TEST_PACKAGES)
|
|
|
|
|
|
|
|
test-race:
|
|
|
|
@go test -v -race $(TEST_PACKAGES)
|
|
|
|
|
|
|
|
test-cli:
|
|
|
|
@echo "NO CLI TESTS"
|
|
|
|
|
|
|
|
test-lint:
|
|
|
|
@echo "--> Running gometalinter"
|
|
|
|
@gometalinter.v2 --config=gometalinter.json ./...
|
|
|
|
@!(gometalinter.v2 --disable-all --enable='errcheck' --vendor ./... | grep -v "client/")
|
|
|
|
@find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" | xargs gofmt -d -s
|
|
|
|
@dep status >/dev/null 2>&1
|
|
|
|
@!(grep -n branch Gopkg.toml)
|
|
|
|
|
2018-07-11 00:12:30 +00:00
|
|
|
godocs:
|
|
|
|
@echo "--> Wait a few seconds and visit http://localhost:6060/pkg/github.com/cosmos/ethermint"
|
|
|
|
godoc -http=:6060
|
|
|
|
|
2018-07-12 23:22:19 +00:00
|
|
|
docker:
|
|
|
|
docker build -t ${DOCKER_IMAGE}:${DOCKER_TAG} .
|
|
|
|
docker tag ${DOCKER_IMAGE}:${DOCKER_TAG} ${DOCKER_IMAGE}:latest
|
|
|
|
docker tag ${DOCKER_IMAGE}:${DOCKER_TAG} ${DOCKER_IMAGE}:${COMMIT_HASH}
|
|
|
|
|
2018-07-26 13:36:01 +00:00
|
|
|
format:
|
|
|
|
@echo "--> Formatting go files"
|
|
|
|
@find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" | xargs gofmt -w -s
|
|
|
|
@find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" | xargs misspell -w
|
|
|
|
|
|
|
|
.PHONY: build install update-tools tools deps godocs clean format test-lint \
|
|
|
|
test-cli test-race test-unit test
|