-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile
285 lines (230 loc) · 10.3 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
PACKAGES=$(shell go list ./... | grep -v '/simulation')
PACKAGE_NAME:=github.com/bze-alphateam/bze-v5
GOLANG_CROSS_VERSION = v1.20.8
VERSION := $(shell echo $(shell git describe --tags 2>/dev/null ) | sed 's/^v//')
COMMIT := $(shell git log -1 --format='%H')
NETWORK ?= mainnet
COVERAGE ?= coverage.txt
BUILDDIR ?= $(CURDIR)/build
LEDGER_ENABLED ?= false
ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=bze \
-X github.com/cosmos/cosmos-sdk/version.AppName=bzed \
-X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \
-X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT)
BUILD_FLAGS := -ldflags '$(ldflags)'
TESTNET_FLAGS ?=
ledger ?= HID
ifeq ($(LEDGER_ENABLED),true)
BUILD_TAGS := -tags cgo,ledger,!test_ledger_mock,!ledger_mock
ifeq ($(ledger), ZEMU)
BUILD_TAGS := $(BUILD_TAGS),ledger_zemu
else
BUILD_TAGS := $(BUILD_TAGS),!ledger_zemu
endif
endif
ifeq ($(NETWORK),testnet)
BUILD_TAGS := $(BUILD_TAGS),testnet
TEST_TAGS := "--tags=testnet"
endif
SIMAPP = github.com/bze-alphateam/bze-v5
BINDIR ?= ~/go/bin
OS := $(shell uname)
all: download install
download:
git submodule update --init --recursive
install: check-version lint check-network go.sum
go install -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) ./cmd/bzed
build: check-version check-network go.sum
go build -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/bzed ./cmd/bzed
build-win64: check-version check-network go.sum
go build -buildmode=exe -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/win64/bzed.exe ./cmd/bzed
.PHONY: build
build-linux: check-version check-network go.sum
ifeq ($(OS), Linux)
GOOS=linux GOARCH=amd64 go build -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/linux-amd64/bzed ./cmd/bzed
else
LEDGER_ENABLED=false GOOS=linux GOARCH=amd64 go build -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/linux-amd64/bzed ./cmd/bzed
endif
build-linux-arm64: check-version check-network go.sum
ifeq ($(OS), Linux)
GOOS=linux GOARCH=arm64 go build -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/linux-arm64/bzed ./cmd/bzed
else
LEDGER_ENABLED=false GOOS=linux GOARCH=arm64 go build -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/linux-arm64/bzed ./cmd/bzed
endif
build-mac: check-version check-network go.sum
ifeq ($(OS), Darwin)
GOOS=darwin GOARCH=amd64 go build -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/darwin-amd64/bzed ./cmd/bzed
else
LEDGER_ENABLED=false GOOS=darwin GOARCH=amd64 go build -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/darwin-amd64/bzed ./cmd/bzed
endif
build-mac-arm64: check-version check-network go.sum
ifeq ($(OS), Darwin)
GOOS=darwin GOARCH=arm64 go build -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/darwin-arm64/bzed ./cmd/bzed
else
LEDGER_ENABLED=false GOOS=darwin GOARCH=arm64 go build -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/darwin-arm64/bzed ./cmd/bzed
endif
build-all: check-version lint all build-win64 build-mac build-mac-arm64 build-linux build-linux-arm64 compress-build
compress-build:
rm -rf $(BUILDDIR)/compressed
mkdir $(BUILDDIR)/compressed
zip -j $(BUILDDIR)/compressed/bze-$(VERSION)-win64.zip $(BUILDDIR)/win64/bzed.exe
tar -czvf $(BUILDDIR)/compressed/bze-$(VERSION)-darwin-arm64.tar.gz -C $(BUILDDIR)/darwin-arm64/ .
tar -czvf $(BUILDDIR)/compressed/bze-$(VERSION)-darwin-amd64.tar.gz -C $(BUILDDIR)/darwin-amd64/ .
tar -czvf $(BUILDDIR)/compressed/bze-$(VERSION)-linux-arm64.tar.gz -C $(BUILDDIR)/linux-arm64/ .
tar -czvf $(BUILDDIR)/compressed/bze-$(VERSION)-linux-amd64.tar.gz -C $(BUILDDIR)/linux-amd64/ .
go.sum: go.mod
@echo "--> Ensure dependencies have not been modified"
GO111MODULE=on go mod verify
test: check-network
@go test $(TEST_TAGS) -v -mod=readonly $(PACKAGES) -coverprofile=$(COVERAGE) -covermode=atomic
.PHONY: test
# look into .golangci.yml for enabling / disabling linters
lint:
@#echo "--> Running linter"
@#golangci-lint run
@#go mod verify
# a trick to make all the lint commands execute, return error when at least one fails.
# golangci-lint is run in standalone job in ci
lint-ci:
@echo "--> Running linter for CI"
@nix run -f ./. lint-env -c lint-ci
# Add check to make sure we are using the proper Go version before proceeding with anything
check-version:
@if ! go version | grep -q "go1.20"; then \
echo "\033[0;31mERROR:\033[0m Go version 1.20 is required for compiling bzed. It looks like you are using" "$(shell go version) \nThere are potential consensus-breaking changes that can occur when running binaries compiled with different versions of Go. Please download Go version 1.20 and retry. Thank you!"; \
exit 1; \
fi
test-sim-nondeterminism: check-network
@echo "Running non-determinism test..."
@go test $(TEST_TAGS) -mod=readonly $(SIMAPP) -run TestAppStateDeterminism -Enabled=true \
-NumBlocks=100 -BlockSize=200 -Commit=true -Period=0 -v -timeout 24h
test-sim-custom-genesis-fast: check-network
@echo "Running custom genesis simulation..."
@echo "By default, ${HOME}/.bze/config/genesis.json will be used."
@go test $(TEST_TAGS) -mod=readonly $(SIMAPP) -run TestFullAppSimulation -Genesis=${HOME}/.bze/config/genesis.json \
-Enabled=true -NumBlocks=100 -BlockSize=200 -Commit=true -Seed=99 -Period=5 -v -timeout 24h
test-sim-import-export:
@echo "Running Chain import/export simulation. This may take several minutes..."
@$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) 25 5 TestAppImportExport
test-sim-after-import:
@echo "Running application simulation-after-import. This may take several minutes..."
@$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) 50 5 TestAppSimulationAfterImport
###############################################################################
### Localnet ###
###############################################################################
build-docker-bzednode:
$(MAKE) -C check-networks/local
# Run a 4-node testnet locally
localnet-start: build-linux build-docker-testbzednode localnet-stop
@if ! [ -f $(BUILDDIR)/node0/.testbze/config/genesis.json ]; \
then docker run --rm -v $(BUILDDIR):/testbzed:Z bze/testbzednode testnet --v 4 -o . --starting-ip-address 192.168.10.2 $(TESTNET_FLAGS); \
fi
BUILDDIR=$(BUILDDIR) docker-compose up -d
# Stop testnet
localnet-stop:
docker-compose down
docker check-network prune -f
# local build pystarport
build-pystarport:
pip install ./pystarport
# Run a local testnet by pystarport
localnet-pystartport: build-pystarport
pystarport serve
clean:
rm -rf $(BUILDDIR)/
clean-docker-compose: localnet-stop
rm -rf $(BUILDDIR)/node* $(BUILDDIR)/gentxs
create-systemd:
./networks/create-service.sh
make-proto:
./makeproto.sh
###############################################################################
### Nix ###
###############################################################################
# nix installation: https://nixos.org/download.html
nix-integration-test: check-network make-proto
nix run -f ./default.nix run-integration-tests -c run-integration-tests
nix-integration-test-upgrade: check-network
nix run -f ./default.nix run-integration-tests -c run-integration-tests "pytest -v -m upgrade"
nix-integration-test-ledger: check-network
nix run -f ./default.nix run-integration-tests-zemu -c run-integration-tests "pytest -v -m ledger"
nix-integration-test-slow: check-network
nix run -f ./default.nix run-integration-tests -c run-integration-tests "pytest -v -m slow"
nix-integration-test-ibc: check-network
nix run -f ./default.nix run-integration-tests -c run-integration-tests "pytest -v -m ibc"
nix-integration-test-byzantine: check-network
nix run -f ./default.nix run-integration-tests -c run-integration-tests "pytest -v -m byzantine"
nix-integration-test-gov: check-network
nix run -f ./default.nix run-integration-tests -c run-integration-tests "pytest -v -m gov"
nix-integration-test-grpc: check-network make-proto
nix run -f ./default.nix run-integration-tests -c run-integration-tests "pytest -v -m grpc"
nix-integration-test-all: check-network make-proto
nix run -f ./default.nix run-integration-tests -c run-integration-tests "pytest -v"
nix-build-%: check-network check-os
@if [ -e ~/.nix/remote-build-env ]; then \
. ~/.nix/remote-build-env; \
fi && \
nix-build -o $* -A $* docker.nix;
docker load < $*;
chaindImage: nix-build-chaindImage
pystarportImage: nix-build-pystarportImage
check-network:
ifeq ($(NETWORK),mainnet)
else ifeq ($(NETWORK),testnet)
else
@echo "Unrecognized network: ${NETWORK}"
endif
@echo "building network: ${NETWORK}"
check-os:
ifeq ($(OS), Darwin)
ifneq ("$(wildcard ~/.nix/remote-build-env))","")
@echo "installed nix-remote-builder before" && \
docker run --restart always --name nix-docker -d -p 3022:22 lnl7/nix:ssh 2> /dev/null || echo "nix-docker is already running"
else
@echo install nix-remote-builder
git clone https://github.com/holidaycheck/nix-remote-builder.git
cd nix-remote-builder && ./init.sh
rm -rf nix-remote-builder
endif
endif
###############################################################################
### Release ###
###############################################################################
.PHONY: release-dry-run
release-dry-run:
docker run \
--rm \
--privileged \
-e CGO_ENABLED=1 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v `pwd`:/go/src/$(PACKAGE_NAME) \
-v ${GOPATH}/pkg:/go/pkg \
-w /go/src/$(PACKAGE_NAME) \
troian/golang-cross:${GOLANG_CROSS_VERSION} \
--rm-dist --skip-validate --skip-publish
.PHONY: release
release:
@if [ ! -f ".release-env" ]; then \
echo "\033[91m.release-env is required for release\033[0m";\
exit 1;\
fi
docker run \
--rm \
--privileged \
-e CGO_ENABLED=1 \
--env-file .release-env \
-v /var/run/docker.sock:/var/run/docker.sock \
-v `pwd`:/go/src/$(PACKAGE_NAME) \
-w /go/src/$(PACKAGE_NAME) \
troian/golang-cross:${GOLANG_CROSS_VERSION} \
release --rm-dist --skip-validate
###############################################################################
### Documentation ###
###############################################################################
# generate api swagger document
document:
make all -f MakefileDoc
# generate protobuf files
# ./proto -> ./x
proto-all:
make proto-all -f MakefileDoc