#!/usr/bin/make -f PACKAGES_NOSIMULATION=$(shell go list ./... | grep -v '/simulation') PACKAGES_SIMTEST=$(shell go list ./... | grep '/simulation') VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//') COMMIT := $(shell git log -1 --format='%H') LEDGER_ENABLED ?= true BINDIR ?= $(GOPATH)/bin SIMAPP = github.com/cosmos/cosmos-sdk/simapp export GO111MODULE = on all: tools build lint test # The below include contains the tools target. include contrib/devtools/Makefile ######################################## ### CI ci: tools build test_cover lint test ######################################## ### Build build: go.sum @go build -mod=readonly ./... update-swagger-docs: @statik -src=client/lcd/swagger-ui -dest=client/lcd -f -m dist: @bash publish/dist.sh @bash publish/publish.sh ######################################## ### Tools & dependencies go-mod-cache: go.sum @echo "--> Download go modules to local cache" @go mod download go.sum: go.mod @echo "--> Ensure dependencies have not been modified" @go mod verify clean: rm -rf snapcraft-local.yaml build/ distclean: clean rm -rf \ gitian-build-darwin/ \ gitian-build-linux/ \ gitian-build-windows/ \ .gitian-builder-cache/ ######################################## ### Documentation godocs: @echo "--> Wait a few seconds and visit http://localhost:6060/pkg/github.com/cosmos/cosmos-sdk/types" godoc -http=:6060 ######################################## ### Testing test: test_unit test_ledger_mock: @go test -mod=readonly `go list github.com/cosmos/cosmos-sdk/crypto` -tags='cgo ledger test_ledger_mock' test_ledger: test_ledger_mock @go test -mod=readonly -v `go list github.com/cosmos/cosmos-sdk/crypto` -tags='cgo ledger' test_unit: @VERSION=$(VERSION) go test -mod=readonly $(PACKAGES_NOSIMULATION) -tags='ledger test_ledger_mock' test_race: @VERSION=$(VERSION) go test -mod=readonly -race $(PACKAGES_NOSIMULATION) test_sim_app_nondeterminism: @echo "Running nondeterminism test..." @go test -mod=readonly $(SIMAPP) -run TestAppStateDeterminism -SimulationEnabled=true -v -timeout 10m test_sim_app_custom_genesis_fast: @echo "Running custom genesis simulation..." @echo "By default, ${HOME}/.gaiad/config/genesis.json will be used." @go test -mod=readonly $(SIMAPP) -run TestFullAppSimulation -SimulationGenesis=${HOME}/.gaiad/config/genesis.json \ -SimulationEnabled=true -SimulationNumBlocks=100 -SimulationBlockSize=200 -SimulationCommit=true -SimulationSeed=99 -SimulationPeriod=5 -v -timeout 24h test_sim_app_fast: @echo "Running quick application simulation. This may take several minutes..." @go test -mod=readonly $(SIMAPP) -run TestFullAppSimulation -SimulationEnabled=true -SimulationNumBlocks=100 -SimulationBlockSize=200 -SimulationCommit=true -SimulationSeed=99 -SimulationPeriod=5 -v -timeout 24h test_sim_app_import_export: runsim @echo "Running application import/export simulation. This may take several minutes..." $(BINDIR)/runsim -e $(SIMAPP) 25 5 TestAppImportExport test_sim_app_simulation_after_import: runsim @echo "Running application simulation-after-import. This may take several minutes..." $(BINDIR)/runsim -e $(SIMAPP) 25 5 TestAppSimulationAfterImport test_sim_app_custom_genesis_multi_seed: runsim @echo "Running multi-seed custom genesis simulation..." @echo "By default, ${HOME}/.gaiad/config/genesis.json will be used." $(BINDIR)/runsim -g ${HOME}/.gaiad/config/genesis.json $(SIMAPP) 400 5 TestFullAppSimulation test_sim_app_multi_seed: runsim @echo "Running multi-seed application simulation. This may take awhile!" $(BINDIR)/runsim $(SIMAPP) 400 5 TestFullAppSimulation test_sim_benchmark_invariants: @echo "Running simulation invariant benchmarks..." @go test -mod=readonly $(SIMAPP) -benchmem -bench=BenchmarkInvariants -run=^$ \ -SimulationEnabled=true -SimulationNumBlocks=1000 -SimulationBlockSize=200 \ -SimulationCommit=true -SimulationSeed=57 -v -timeout 24h # Don't move it into tools - this will be gone once gaia has moved into the new repo runsim: $(BINDIR)/runsim $(BINDIR)/runsim: contrib/runsim/main.go go install github.com/cosmos/cosmos-sdk/contrib/runsim SIM_NUM_BLOCKS ?= 500 SIM_BLOCK_SIZE ?= 200 SIM_COMMIT ?= true test_sim_app_benchmark: @echo "Running application benchmark for numBlocks=$(SIM_NUM_BLOCKS), blockSize=$(SIM_BLOCK_SIZE). This may take awhile!" @go test -mod=readonly -benchmem -run=^$$ $(SIMAPP) -bench ^BenchmarkFullAppSimulation$$ \ -SimulationEnabled=true -SimulationNumBlocks=$(SIM_NUM_BLOCKS) -SimulationBlockSize=$(SIM_BLOCK_SIZE) -SimulationCommit=$(SIM_COMMIT) -timeout 24h test_sim_app_profile: @echo "Running application benchmark for numBlocks=$(SIM_NUM_BLOCKS), blockSize=$(SIM_BLOCK_SIZE). This may take awhile!" @go test -mod=readonly -benchmem -run=^$$ $(SIMAPP) -bench ^BenchmarkFullAppSimulation$$ \ -SimulationEnabled=true -SimulationNumBlocks=$(SIM_NUM_BLOCKS) -SimulationBlockSize=$(SIM_BLOCK_SIZE) -SimulationCommit=$(SIM_COMMIT) -timeout 24h -cpuprofile cpu.out -memprofile mem.out test_cover: @export VERSION=$(VERSION); bash -x tests/test_cover.sh lint: tools ci-lint ci-lint: golangci-lint run find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" | xargs gofmt -d -s go mod verify format: tools find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs gofmt -w -s find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs misspell -w find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs goimports -w -local github.com/cosmos/cosmos-sdk benchmark: @go test -mod=readonly -bench=. $(PACKAGES_NOSIMULATION) ######################################## ### Devdoc DEVDOC_SAVE = docker commit `docker ps -a -n 1 -q` devdoc:local devdoc_init: docker run -it -v "$(CURDIR):/go/src/github.com/cosmos/cosmos-sdk" -w "/go/src/github.com/cosmos/cosmos-sdk" tendermint/devdoc echo # TODO make this safer $(call DEVDOC_SAVE) devdoc: docker run -it -v "$(CURDIR):/go/src/github.com/cosmos/cosmos-sdk" -w "/go/src/github.com/cosmos/cosmos-sdk" devdoc:local bash devdoc_save: # TODO make this safer $(call DEVDOC_SAVE) devdoc_clean: docker rmi -f $$(docker images -f "dangling=true" -q) devdoc_update: docker pull tendermint/devdoc ######################################## ### Packaging snapcraft-local.yaml: snapcraft-local.yaml.in sed "s/@VERSION@/${VERSION}/g" < $< > $@ # 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: build dist clean test test_unit test_cover lint \ benchmark devdoc_init devdoc devdoc_save devdoc_update runsim \ format test_sim_app_nondeterminism test_sim_modules test_sim_app_fast \ test_sim_app_custom_genesis_fast test_sim_app_custom_genesis_multi_seed \ test_sim_app_multi_seed test_sim_app_import_export test_sim_benchmark_invariants \ go-mod-cache