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.
|
|
|
|
|
2019-07-25 20:38:55 +00:00
|
|
|
PACKAGES=$(shell go list ./... | grep -Ev 'vendor|importer|rpc/tester')
|
2018-07-11 00:12:30 +00:00
|
|
|
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
|
2018-09-28 21:40:58 +00:00
|
|
|
DOCKER_IMAGE = cosmos/ethermint
|
2018-07-19 21:16:48 +00:00
|
|
|
ETHERMINT_DAEMON_BINARY = emintd
|
|
|
|
ETHERMINT_CLI_BINARY = emintcli
|
2019-06-25 19:56:54 +00:00
|
|
|
GO_MOD=GO111MODULE=on
|
2020-04-29 15:48:44 +00:00
|
|
|
BINDIR ?= $(GOPATH)/bin
|
2020-07-31 21:42:04 +00:00
|
|
|
BUILDDIR ?= $(CURDIR)/build
|
2020-04-29 15:48:44 +00:00
|
|
|
SIMAPP = github.com/cosmos/ethermint/app
|
|
|
|
RUNSIM = $(BINDIR)/runsim
|
2018-07-11 00:12:30 +00:00
|
|
|
|
2019-06-25 19:56:54 +00:00
|
|
|
all: tools verify install
|
2018-07-11 00:12:30 +00:00
|
|
|
|
2020-07-31 21:42:04 +00:00
|
|
|
###############################################################################
|
|
|
|
### Build ###
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
build: go.sum
|
|
|
|
go build -mod=readonly ./...
|
|
|
|
|
|
|
|
build-ethermint: go.sum
|
|
|
|
mkdir -p $(BUILDDIR)
|
|
|
|
go build -mod=readonly $(BUILD_FLAGS) -o $(BUILDDIR) ./cmd/$(ETHERMINT_DAEMON_BINARY)
|
|
|
|
go build -mod=readonly $(BUILD_FLAGS) -o $(BUILDDIR) ./cmd/$(ETHERMINT_CLI_BINARY)
|
2018-07-11 00:12:30 +00:00
|
|
|
|
2020-07-31 21:42:04 +00:00
|
|
|
build-ethermint-linux: go.sum
|
|
|
|
GOOS=linux GOARCH=amd64 CGO_ENABLED=1 $(MAKE) build-ethermint
|
|
|
|
|
|
|
|
.PHONY: build build-ethermint build-ethermint-linux
|
2018-07-11 00:12:30 +00:00
|
|
|
|
|
|
|
install:
|
2020-07-31 21:42:04 +00:00
|
|
|
${GO_MOD} go install $(BUILD_FLAGS) ./cmd/$(ETHERMINT_DAEMON_BINARY)
|
|
|
|
${GO_MOD} go install $(BUILD_FLAGS) ./cmd/$(ETHERMINT_CLI_BINARY)
|
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-09-28 21:40:58 +00:00
|
|
|
@echo "--> Updating vendor dependencies"
|
2019-07-02 19:36:22 +00:00
|
|
|
${GO_MOD} go get -u -v $(GOLINT) $(UNCONVERT) $(INEFFASSIGN) $(MISSPELL) $(ERRCHECK) $(UNPARAM)
|
2019-10-18 23:23:09 +00:00
|
|
|
${GO_MOD} go get -u -v $(GOCILINT)
|
2019-06-25 19:56:54 +00:00
|
|
|
|
|
|
|
verify:
|
|
|
|
@echo "--> Verifying dependencies have not been modified"
|
|
|
|
${GO_MOD} go mod verify
|
2018-09-28 21:40:58 +00:00
|
|
|
|
2020-07-31 21:42:04 +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}
|
|
|
|
# update old container
|
|
|
|
docker rm ethermint
|
|
|
|
# create a new container from the latest image
|
|
|
|
docker create --name ethermint -t -i cosmos/ethermint:latest ethermint
|
|
|
|
# move the binaries to the ./build directory
|
|
|
|
mkdir -p ./build/
|
|
|
|
docker cp ethermint:/usr/bin/emintd ./build/ ; \
|
|
|
|
docker cp ethermint:/usr/bin/emintcli ./build/
|
|
|
|
|
|
|
|
docker-localnet:
|
|
|
|
# build the image
|
|
|
|
docker build -f ./networks/local/ethermintnode/Dockerfile . -t emintd/node
|
2018-07-11 00:12:30 +00:00
|
|
|
|
2020-07-31 21:42:04 +00:00
|
|
|
###############################################################################
|
|
|
|
### Tools & Dependencies ###
|
|
|
|
###############################################################################
|
2020-04-29 15:48:44 +00:00
|
|
|
|
|
|
|
# Install the runsim binary with a temporary workaround of entering an outside
|
|
|
|
# directory as the "go get" command ignores the -mod option and will polute the
|
|
|
|
# go.{mod, sum} files.
|
|
|
|
#
|
|
|
|
# ref: https://github.com/golang/go/issues/30515
|
|
|
|
$(RUNSIM):
|
|
|
|
@echo "Installing runsim..."
|
|
|
|
@(cd /tmp && go get github.com/cosmos/tools/cmd/runsim@v1.0.0)
|
|
|
|
|
|
|
|
tools: $(RUNSIM)
|
2020-07-31 21:42:04 +00:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
### Tests & Simulation ###
|
|
|
|
###############################################################################
|
2018-07-19 21:16:48 +00:00
|
|
|
|
2018-07-26 13:36:01 +00:00
|
|
|
test: test-unit
|
|
|
|
|
|
|
|
test-unit:
|
2020-06-26 22:26:55 +00:00
|
|
|
@go test -v ./... $(PACKAGES)
|
2018-07-26 13:36:01 +00:00
|
|
|
|
|
|
|
test-race:
|
2020-06-26 22:26:55 +00:00
|
|
|
@go test -v --vet=off -race ./... $(PACKAGES)
|
2018-07-26 13:36:01 +00:00
|
|
|
|
2018-10-24 12:20:59 +00:00
|
|
|
test-import:
|
2020-06-26 22:26:55 +00:00
|
|
|
@go test ./importer -v --vet=off --run=TestImportBlocks --datadir tmp \
|
2020-04-29 20:38:57 +00:00
|
|
|
--blockchain blockchain --timeout=10m
|
2020-07-24 18:54:25 +00:00
|
|
|
rm -rf importer/tmp
|
2018-10-24 12:20:59 +00:00
|
|
|
|
2019-07-25 20:38:55 +00:00
|
|
|
test-rpc:
|
2020-06-04 10:40:21 +00:00
|
|
|
./scripts/integration-test-all.sh -q 1 -z 1 -s 2
|
2020-04-21 19:37:10 +00:00
|
|
|
|
2020-07-31 21:42:04 +00:00
|
|
|
test-sim-nondeterminism:
|
|
|
|
@echo "Running non-determinism test..."
|
|
|
|
@go test -mod=readonly $(SIMAPP) -run TestAppStateDeterminism -Enabled=true \
|
|
|
|
-NumBlocks=100 -BlockSize=200 -Commit=true -Period=0 -v -timeout 24h
|
2018-07-11 00:12:30 +00:00
|
|
|
|
2020-07-31 21:42:04 +00:00
|
|
|
test-sim-custom-genesis-fast:
|
|
|
|
@echo "Running custom genesis simulation..."
|
|
|
|
@echo "By default, ${HOME}/.$(ETHERMINT_DAEMON_BINARY)/config/genesis.json will be used."
|
|
|
|
@go test -mod=readonly $(SIMAPP) -run TestFullAppSimulation -Genesis=${HOME}/.$(ETHERMINT_DAEMON_BINARY)/config/genesis.json \
|
|
|
|
-Enabled=true -NumBlocks=100 -BlockSize=200 -Commit=true -Seed=99 -Period=5 -v -timeout 24h
|
|
|
|
|
|
|
|
test-sim-import-export: runsim
|
|
|
|
@echo "Running Ethermint import/export simulation. This may take several minutes..."
|
|
|
|
@$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) 25 5 TestAppImportExport
|
|
|
|
|
|
|
|
test-sim-after-import: runsim
|
|
|
|
@echo "Running Ethermint simulation-after-import. This may take several minutes..."
|
|
|
|
@$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) 25 5 TestAppSimulationAfterImport
|
|
|
|
|
|
|
|
test-sim-custom-genesis-multi-seed: runsim
|
|
|
|
@echo "Running multi-seed custom genesis simulation..."
|
|
|
|
@echo "By default, ${HOME}/.$(ETHERMINT_DAEMON_BINARY)/config/genesis.json will be used."
|
|
|
|
@$(BINDIR)/runsim -Jobs=4 -Genesis=${HOME}/.$(ETHERMINT_DAEMON_BINARY)/config/genesis.json 400 5 TestFullAppSimulation
|
|
|
|
|
|
|
|
test-sim-multi-seed-long: runsim
|
|
|
|
@echo "Running multi-seed application simulation. This may take awhile!"
|
|
|
|
@$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) 500 50 TestFullAppSimulation
|
|
|
|
|
|
|
|
test-sim-multi-seed-short: runsim
|
|
|
|
@echo "Running multi-seed application simulation. This may take awhile!"
|
|
|
|
@$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) 50 10 TestFullAppSimulation
|
2018-07-12 23:22:19 +00:00
|
|
|
|
2020-07-31 21:42:04 +00:00
|
|
|
.PHONY: runsim test-sim-nondeterminism test-sim-custom-genesis-fast test-sim-fast sim-import-export \
|
|
|
|
test-sim-simulation-after-import test-sim-custom-genesis-multi-seed test-sim-multi-seed
|
2020-04-21 19:37:10 +00:00
|
|
|
|
2019-10-18 23:23:09 +00:00
|
|
|
.PHONY: build install update-tools tools godocs clean format lint \
|
2018-10-24 12:20:59 +00:00
|
|
|
test-cli test-race test-unit test test-import
|
2020-04-22 19:26:01 +00:00
|
|
|
|
2020-06-26 22:26:55 +00:00
|
|
|
###############################################################################
|
|
|
|
### Linting ###
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
lint:
|
|
|
|
golangci-lint run --out-format=tab --issues-exit-code=0
|
|
|
|
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" | xargs gofmt -d -s
|
|
|
|
|
|
|
|
format:
|
|
|
|
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -name '*.pb.go' | xargs gofmt -w -s
|
|
|
|
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -name '*.pb.go' | xargs misspell -w
|
|
|
|
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -name '*.pb.go' | xargs goimports -w -local github.com/tendermint
|
|
|
|
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -name '*.pb.go' | xargs goimports -w -local github.com/ethereum/go-ethereum
|
|
|
|
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -name '*.pb.go' | xargs goimports -w -local github.com/cosmos/cosmos-sdk
|
|
|
|
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -name '*.pb.go' | xargs goimports -w -local github.com/cosmos/ethermint
|
|
|
|
|
|
|
|
.PHONY: lint format
|
|
|
|
|
2020-04-22 19:26:01 +00:00
|
|
|
###############################################################################
|
|
|
|
### Protobuf ###
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
proto-all: proto-gen proto-lint proto-check-breaking
|
|
|
|
|
|
|
|
proto-gen:
|
|
|
|
@./scripts/protocgen.sh
|
|
|
|
|
|
|
|
proto-lint:
|
|
|
|
@buf check lint --error-format=json
|
|
|
|
|
|
|
|
# NOTE: should match the default repo branch
|
|
|
|
proto-check-breaking:
|
|
|
|
@buf check breaking --against-input '.git#branch=development'
|
|
|
|
|
|
|
|
|
|
|
|
TM_URL = https://raw.githubusercontent.com/tendermint/tendermint/v0.33.3
|
|
|
|
GOGO_PROTO_URL = https://raw.githubusercontent.com/regen-network/protobuf/cosmos
|
|
|
|
COSMOS_PROTO_URL = https://raw.githubusercontent.com/regen-network/cosmos-proto/master
|
|
|
|
SDK_PROTO_URL = https://raw.githubusercontent.com/cosmos/cosmos-sdk/master
|
|
|
|
|
|
|
|
TM_KV_TYPES = third_party/proto/tendermint/libs/kv
|
|
|
|
TM_MERKLE_TYPES = third_party/proto/tendermint/crypto/merkle
|
|
|
|
TM_ABCI_TYPES = third_party/proto/tendermint/abci/types
|
|
|
|
GOGO_PROTO_TYPES = third_party/proto/gogoproto
|
|
|
|
COSMOS_PROTO_TYPES = third_party/proto/cosmos-proto
|
|
|
|
SDK_PROTO_TYPES = third_party/proto/cosmos-sdk/types
|
|
|
|
AUTH_PROTO_TYPES = third_party/proto/cosmos-sdk/x/auth/types
|
|
|
|
VESTING_PROTO_TYPES = third_party/proto/cosmos-sdk/x/auth/vesting/types
|
|
|
|
SUPPLY_PROTO_TYPES = third_party/proto/cosmos-sdk/x/supply/types
|
|
|
|
|
|
|
|
proto-update-deps:
|
|
|
|
@mkdir -p $(GOGO_PROTO_TYPES)
|
|
|
|
@curl -sSL $(GOGO_PROTO_URL)/gogoproto/gogo.proto > $(GOGO_PROTO_TYPES)/gogo.proto
|
|
|
|
|
|
|
|
@mkdir -p $(COSMOS_PROTO_TYPES)
|
|
|
|
@curl -sSL $(COSMOS_PROTO_URL)/cosmos.proto > $(COSMOS_PROTO_TYPES)/cosmos.proto
|
|
|
|
|
|
|
|
@mkdir -p $(TM_ABCI_TYPES)
|
|
|
|
@curl -sSL $(TM_URL)/abci/types/types.proto > $(TM_ABCI_TYPES)/types.proto
|
|
|
|
@sed -i '' '8 s|crypto/merkle/merkle.proto|third_party/proto/tendermint/crypto/merkle/merkle.proto|g' $(TM_ABCI_TYPES)/types.proto
|
|
|
|
@sed -i '' '9 s|libs/kv/types.proto|third_party/proto/tendermint/libs/kv/types.proto|g' $(TM_ABCI_TYPES)/types.proto
|
|
|
|
|
|
|
|
@mkdir -p $(TM_KV_TYPES)
|
|
|
|
@curl -sSL $(TM_URL)/libs/kv/types.proto > $(TM_KV_TYPES)/types.proto
|
|
|
|
|
|
|
|
@mkdir -p $(TM_MERKLE_TYPES)
|
|
|
|
@curl -sSL $(TM_URL)/crypto/merkle/merkle.proto > $(TM_MERKLE_TYPES)/merkle.proto
|
|
|
|
|
|
|
|
@mkdir -p $(SDK_PROTO_TYPES)
|
|
|
|
@curl -sSL $(SDK_PROTO_URL)/types/types.proto > $(SDK_PROTO_TYPES)/types.proto
|
|
|
|
|
|
|
|
@mkdir -p $(AUTH_PROTO_TYPES)
|
|
|
|
@curl -sSL $(SDK_PROTO_URL)/x/auth/types/types.proto > $(AUTH_PROTO_TYPES)/types.proto
|
|
|
|
@sed -i '' '5 s|types/types.proto|third_party/proto/cosmos-sdk/types/types.proto|g' $(AUTH_PROTO_TYPES)/types.proto
|
|
|
|
|
|
|
|
@mkdir -p $(VESTING_PROTO_TYPES)
|
|
|
|
curl -sSL $(SDK_PROTO_URL)/x/auth/vesting/types/types.proto > $(VESTING_PROTO_TYPES)/types.proto
|
|
|
|
@sed -i '' '5 s|types/types.proto|third_party/proto/cosmos-sdk/types/types.proto|g' $(VESTING_PROTO_TYPES)/types.proto
|
|
|
|
@sed -i '' '6 s|x/auth/types/types.proto|third_party/proto/cosmos-sdk/x/auth/types/types.proto|g' $(VESTING_PROTO_TYPES)/types.proto
|
|
|
|
|
|
|
|
@mkdir -p $(SUPPLY_PROTO_TYPES)
|
|
|
|
curl -sSL $(SDK_PROTO_URL)/x/supply/types/types.proto > $(SUPPLY_PROTO_TYPES)/types.proto
|
|
|
|
@sed -i '' '5 s|types/types.proto|third_party/proto/cosmos-sdk/types/types.proto|g' $(SUPPLY_PROTO_TYPES)/types.proto
|
|
|
|
@sed -i '' '6 s|x/auth/types/types.proto|third_party/proto/cosmos-sdk/x/auth/types/types.proto|g' $(SUPPLY_PROTO_TYPES)/types.proto
|
|
|
|
|
|
|
|
|
2020-04-29 15:48:44 +00:00
|
|
|
.PHONY: proto-all proto-gen proto-lint proto-check-breaking proto-update-deps
|
|
|
|
|
|
|
|
|
2020-07-31 21:42:04 +00:00
|
|
|
###############################################################################
|
|
|
|
### Documentation ###
|
|
|
|
###############################################################################
|
2020-07-02 08:22:45 +00:00
|
|
|
|
|
|
|
# Start docs site at localhost:8080
|
|
|
|
docs-serve:
|
|
|
|
@cd docs && \
|
|
|
|
npm install && \
|
|
|
|
npm run serve
|
|
|
|
|
|
|
|
# Build the site into docs/.vuepress/dist
|
|
|
|
docs-build:
|
|
|
|
@cd docs && \
|
|
|
|
npm install && \
|
2020-07-31 21:42:04 +00:00
|
|
|
npm run build
|
|
|
|
|
|
|
|
godocs:
|
|
|
|
@echo "--> Wait a few seconds and visit http://localhost:6060/pkg/github.com/cosmos/ethermint"
|
|
|
|
godoc -http=:6060
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
### Localnet ###
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
build-docker-local-ethermint:
|
|
|
|
@$(MAKE) -C networks/local
|
|
|
|
|
|
|
|
# Run a 4-node testnet locally
|
|
|
|
localnet-start: localnet-stop
|
|
|
|
mkdir -p ./build/
|
|
|
|
@$(MAKE) docker-localnet
|
|
|
|
|
|
|
|
if ! [ -f build/node0/$(ETHERMINT_DAEMON_BINARY)/config/genesis.json ]; then docker run --rm -v $(CURDIR)/build:/ethermint:Z emintd/node "emintd testnet --v 4 -o /ethermint --starting-ip-address 192.168.10.2 --keyring-backend=test"; fi
|
|
|
|
docker-compose up -d
|
|
|
|
|
|
|
|
localnet-stop:
|
|
|
|
docker-compose down
|
|
|
|
|
|
|
|
.PHONY: build-docker-local-ethermint localnet-start localnet-stop
|