You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

313 lines
11 KiB

6 years ago
9 years ago
  1. GOTOOLS = \
  2. github.com/mitchellh/gox \
  3. github.com/golangci/golangci-lint/cmd/golangci-lint \
  4. github.com/gogo/protobuf/protoc-gen-gogo \
  5. github.com/square/certstrap
  6. GOBIN?=${GOPATH}/bin
  7. PACKAGES=$(shell go list ./...)
  8. OUTPUT?=build/tendermint
  9. export GO111MODULE = on
  10. INCLUDE = -I=. -I=${GOPATH}/src -I=${GOPATH}/src/github.com/gogo/protobuf/protobuf
  11. BUILD_TAGS?='tendermint'
  12. BUILD_FLAGS = -mod=readonly -ldflags "-X github.com/tendermint/tendermint/version.GitCommit=`git rev-parse --short=8 HEAD`"
  13. all: check build test install
  14. check: check_tools
  15. ########################################
  16. ### Build Tendermint
  17. build:
  18. CGO_ENABLED=0 go build $(BUILD_FLAGS) -tags $(BUILD_TAGS) -o $(OUTPUT) ./cmd/tendermint/
  19. build_c:
  20. CGO_ENABLED=1 go build $(BUILD_FLAGS) -tags "$(BUILD_TAGS) cleveldb" -o $(OUTPUT) ./cmd/tendermint/
  21. build_race:
  22. CGO_ENABLED=0 go build -race $(BUILD_FLAGS) -tags $(BUILD_TAGS) -o $(OUTPUT) ./cmd/tendermint
  23. install:
  24. CGO_ENABLED=0 go install $(BUILD_FLAGS) -tags $(BUILD_TAGS) ./cmd/tendermint
  25. install_c:
  26. CGO_ENABLED=1 go install $(BUILD_FLAGS) -tags "$(BUILD_TAGS) cleveldb" ./cmd/tendermint
  27. ########################################
  28. ### Protobuf
  29. protoc_all: protoc_libs protoc_merkle protoc_abci protoc_grpc protoc_proto3types
  30. %.pb.go: %.proto
  31. ## If you get the following error,
  32. ## "error while loading shared libraries: libprotobuf.so.14: cannot open shared object file: No such file or directory"
  33. ## See https://stackoverflow.com/a/25518702
  34. ## Note the $< here is substituted for the %.proto
  35. ## Note the $@ here is substituted for the %.pb.go
  36. protoc $(INCLUDE) $< --gogo_out=Mgoogle/protobuf/timestamp.proto=github.com/golang/protobuf/ptypes/timestamp,plugins=grpc:.
  37. ########################################
  38. ### Build ABCI
  39. # see protobuf section above
  40. protoc_abci: abci/types/types.pb.go
  41. protoc_proto3types: types/proto3/block.pb.go
  42. build_abci:
  43. @go build -mod=readonly -i ./abci/cmd/...
  44. install_abci:
  45. @go install -mod=readonly ./abci/cmd/...
  46. ########################################
  47. ### Distribution
  48. # dist builds binaries for all platforms and packages them for distribution
  49. # TODO add abci to these scripts
  50. dist:
  51. @BUILD_TAGS=$(BUILD_TAGS) sh -c "'$(CURDIR)/scripts/dist.sh'"
  52. ########################################
  53. ### Tools & dependencies
  54. check_tools:
  55. @# https://stackoverflow.com/a/25668869
  56. @echo "Found tools: $(foreach tool,$(notdir $(GOTOOLS)),\
  57. $(if $(shell which $(tool)),$(tool),$(error "No $(tool) in PATH")))"
  58. get_tools:
  59. @echo "--> Installing tools"
  60. ./scripts/get_tools.sh
  61. update_tools:
  62. @echo "--> Updating tools"
  63. ./scripts/get_tools.sh
  64. #For ABCI and libs
  65. get_protoc:
  66. @# https://github.com/google/protobuf/releases
  67. curl -L https://github.com/google/protobuf/releases/download/v3.6.1/protobuf-cpp-3.6.1.tar.gz | tar xvz && \
  68. cd protobuf-3.6.1 && \
  69. DIST_LANG=cpp ./configure && \
  70. make && \
  71. make check && \
  72. sudo make install && \
  73. sudo ldconfig && \
  74. cd .. && \
  75. rm -rf protobuf-3.6.1
  76. draw_deps:
  77. @# requires brew install graphviz or apt-get install graphviz
  78. go get github.com/RobotsAndPencils/goviz
  79. @goviz -i github.com/tendermint/tendermint/cmd/tendermint -d 3 | dot -Tpng -o dependency-graph.png
  80. get_deps_bin_size:
  81. @# Copy of build recipe with additional flags to perform binary size analysis
  82. $(eval $(shell go build -work -a $(BUILD_FLAGS) -tags $(BUILD_TAGS) -o $(OUTPUT) ./cmd/tendermint/ 2>&1))
  83. @find $(WORK) -type f -name "*.a" | xargs -I{} du -hxs "{}" | sort -rh | sed -e s:${WORK}/::g > deps_bin_size.log
  84. @echo "Results can be found here: $(CURDIR)/deps_bin_size.log"
  85. ########################################
  86. ### Libs
  87. protoc_libs: libs/common/types.pb.go
  88. # generates certificates for TLS testing in remotedb and RPC server
  89. gen_certs: clean_certs
  90. certstrap init --common-name "tendermint.com" --passphrase ""
  91. certstrap request-cert --common-name "remotedb" -ip "127.0.0.1" --passphrase ""
  92. certstrap sign "remotedb" --CA "tendermint.com" --passphrase ""
  93. mv out/remotedb.crt libs/db/remotedb/test.crt
  94. mv out/remotedb.key libs/db/remotedb/test.key
  95. certstrap request-cert --common-name "server" -ip "127.0.0.1" --passphrase ""
  96. certstrap sign "server" --CA "tendermint.com" --passphrase ""
  97. mv out/server.crt rpc/lib/server/test.crt
  98. mv out/server.key rpc/lib/server/test.key
  99. rm -rf out
  100. # deletes generated certificates
  101. clean_certs:
  102. rm -f libs/db/remotedb/test.crt
  103. rm -f libs/db/remotedb/test.key
  104. rm -f rpc/lib/server/test.crt
  105. rm -f rpc/lib/server/test.key
  106. test_libs:
  107. go test -tags clevedb boltdb $(PACKAGES)
  108. grpc_dbserver:
  109. protoc -I libs/db/remotedb/proto/ libs/db/remotedb/proto/defs.proto --go_out=plugins=grpc:libs/db/remotedb/proto
  110. protoc_grpc: rpc/grpc/types.pb.go
  111. protoc_merkle: crypto/merkle/merkle.pb.go
  112. ########################################
  113. ### Testing
  114. ## required to be run first by most tests
  115. build_docker_test_image:
  116. docker build -t tester -f ./test/docker/Dockerfile .
  117. ### coverage, app, persistence, and libs tests
  118. test_cover:
  119. # run the go unit tests with coverage
  120. bash test/test_cover.sh
  121. test_apps:
  122. # run the app tests using bash
  123. # requires `abci-cli` and `tendermint` binaries installed
  124. bash test/app/test.sh
  125. test_abci_apps:
  126. bash abci/tests/test_app/test.sh
  127. test_abci_cli:
  128. # test the cli against the examples in the tutorial at:
  129. # ./docs/abci-cli.md
  130. # if test fails, update the docs ^
  131. @ bash abci/tests/test_cli/test.sh
  132. test_persistence:
  133. # run the persistence tests using bash
  134. # requires `abci-cli` installed
  135. docker run --name run_persistence -t tester bash test/persist/test_failure_indices.sh
  136. # TODO undockerize
  137. # bash test/persist/test_failure_indices.sh
  138. test_p2p:
  139. docker rm -f rsyslog || true
  140. rm -rf test/logs || true
  141. mkdir test/logs
  142. cd test/
  143. docker run -d -v "logs:/var/log/" -p 127.0.0.1:5514:514/udp --name rsyslog voxxit/rsyslog
  144. cd ..
  145. # requires 'tester' the image from above
  146. bash test/p2p/test.sh tester
  147. # the `docker cp` takes a really long time; uncomment for debugging
  148. #
  149. # mkdir -p test/p2p/logs && docker cp rsyslog:/var/log test/p2p/logs
  150. test_integrations:
  151. make build_docker_test_image
  152. make get_tools
  153. make install
  154. make test_cover
  155. make test_apps
  156. make test_abci_apps
  157. make test_abci_cli
  158. make test_libs
  159. make test_persistence
  160. make test_p2p
  161. test_release:
  162. @go test -tags release $(PACKAGES)
  163. test100:
  164. @for i in {1..100}; do make test; done
  165. vagrant_test:
  166. vagrant up
  167. vagrant ssh -c 'make test_integrations'
  168. ### go tests
  169. test:
  170. @echo "--> Running go test"
  171. @go test -p 1 $(PACKAGES)
  172. test_race:
  173. @echo "--> Running go test --race"
  174. @go test -p 1 -v -race $(PACKAGES)
  175. # uses https://github.com/sasha-s/go-deadlock/ to detect potential deadlocks
  176. test_with_deadlock:
  177. make set_with_deadlock
  178. make test
  179. make cleanup_after_test_with_deadlock
  180. set_with_deadlock:
  181. find . -name "*.go" | grep -v "vendor/" | xargs -n 1 sed -i.bak 's/sync.RWMutex/deadlock.RWMutex/'
  182. find . -name "*.go" | grep -v "vendor/" | xargs -n 1 sed -i.bak 's/sync.Mutex/deadlock.Mutex/'
  183. find . -name "*.go" | grep -v "vendor/" | xargs -n 1 goimports -w
  184. # cleanes up after you ran test_with_deadlock
  185. cleanup_after_test_with_deadlock:
  186. find . -name "*.go" | grep -v "vendor/" | xargs -n 1 sed -i.bak 's/deadlock.RWMutex/sync.RWMutex/'
  187. find . -name "*.go" | grep -v "vendor/" | xargs -n 1 sed -i.bak 's/deadlock.Mutex/sync.Mutex/'
  188. find . -name "*.go" | grep -v "vendor/" | xargs -n 1 goimports -w
  189. ########################################
  190. ### Formatting, linting, and vetting
  191. fmt:
  192. @go fmt ./...
  193. lint:
  194. @echo "--> Running linter"
  195. @golangci-lint run
  196. DESTINATION = ./index.html.md
  197. rpc-docs:
  198. cat rpc/core/slate_header.txt > $(DESTINATION)
  199. godoc2md -template rpc/core/doc_template.txt github.com/tendermint/tendermint/rpc/core | grep -v -e "pipe.go" -e "routes.go" -e "dev.go" | sed 's,/src/target,https://github.com/tendermint/tendermint/tree/master/rpc/core,' >> $(DESTINATION)
  200. ###########################################################
  201. ### Docker image
  202. build-docker:
  203. cp $(OUTPUT) DOCKER/tendermint
  204. docker build --label=tendermint --tag="tendermint/tendermint" DOCKER
  205. rm -rf DOCKER/tendermint
  206. ###########################################################
  207. ### Local testnet using docker
  208. # Build linux binary on other platforms
  209. build-linux: get_tools
  210. GOOS=linux GOARCH=amd64 $(MAKE) build
  211. build-docker-localnode:
  212. @cd networks/local && make
  213. # Run a 4-node testnet locally
  214. localnet-start: localnet-stop build-docker-localnode
  215. @if ! [ -f build/node0/config/genesis.json ]; then docker run --rm -v $(CURDIR)/build:/tendermint:Z tendermint/localnode testnet --config /etc/tendermint/config-template.toml --v 4 --o . --populate-persistent-peers --starting-ip-address 192.167.10.2; fi
  216. docker-compose up
  217. # Stop testnet
  218. localnet-stop:
  219. docker-compose down
  220. ###########################################################
  221. ### Remote full-nodes (sentry) using terraform and ansible
  222. # Server management
  223. sentry-start:
  224. @if [ -z "$(DO_API_TOKEN)" ]; then echo "DO_API_TOKEN environment variable not set." ; false ; fi
  225. @if ! [ -f $(HOME)/.ssh/id_rsa.pub ]; then ssh-keygen ; fi
  226. cd networks/remote/terraform && terraform init && terraform apply -var DO_API_TOKEN="$(DO_API_TOKEN)" -var SSH_KEY_FILE="$(HOME)/.ssh/id_rsa.pub"
  227. @if ! [ -f $(CURDIR)/build/node0/config/genesis.json ]; then docker run --rm -v $(CURDIR)/build:/tendermint:Z tendermint/localnode testnet --v 0 --n 4 --o . ; fi
  228. cd networks/remote/ansible && ANSIBLE_HOST_KEY_CHECKING=False ansible-playbook -i inventory/digital_ocean.py -l sentrynet install.yml
  229. @echo "Next step: Add your validator setup in the genesis.json and config.tml files and run \"make sentry-config\". (Public key of validator, chain ID, peer IP and node ID.)"
  230. # Configuration management
  231. sentry-config:
  232. cd networks/remote/ansible && ansible-playbook -i inventory/digital_ocean.py -l sentrynet config.yml -e BINARY=$(CURDIR)/build/tendermint -e CONFIGDIR=$(CURDIR)/build
  233. sentry-stop:
  234. @if [ -z "$(DO_API_TOKEN)" ]; then echo "DO_API_TOKEN environment variable not set." ; false ; fi
  235. cd networks/remote/terraform && terraform destroy -var DO_API_TOKEN="$(DO_API_TOKEN)" -var SSH_KEY_FILE="$(HOME)/.ssh/id_rsa.pub"
  236. # meant for the CI, inspect script & adapt accordingly
  237. build-slate:
  238. bash scripts/slate.sh
  239. # To avoid unintended conflicts with file names, always add to .PHONY
  240. # unless there is a reason not to.
  241. # https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html
  242. .PHONY: check build build_race build_abci dist install install_abci check_tools get_tools update_tools draw_deps get_protoc protoc_abci protoc_libs gen_certs clean_certs grpc_dbserver test_cover test_apps test_persistence test_p2p test test_race test_integrations test_release test100 vagrant_test fmt rpc-docs build-linux localnet-start localnet-stop build-docker build-docker-localnode sentry-start sentry-config sentry-stop build-slate protoc_grpc protoc_all build_c install_c test_with_deadlock cleanup_after_test_with_deadlock lint