-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile
executable file
·266 lines (212 loc) · 8.77 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
PACKAGES=$(shell go list ./... | grep -v '/simulation')
PACKAGE_NAME:=github.com/vidulum/mainnet
GOLANG_CROSS_VERSION = v1.20.13
VERSION := $(shell echo $(shell git describe --tags 2>/dev/null ) | sed 's/^v//')
COMMIT := $(shell git log -1 --format='%H')
COMMIT = "latest"
NETWORK ?= mainnet
COVERAGE ?= coverage.txt
BUILDDIR ?= $(CURDIR)/build
LEDGER_ENABLED ?= true
ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=vidulum-1 \
-X github.com/cosmos/cosmos-sdk/version.ServerName=vidulumd \
-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/vidulum/vidulum/v1/app
BINDIR ?= ~/go/bin
OS := $(shell uname)
all: check-version download install
download:
git submodule update --init --recursive
install: check-version check-network go.sum
go install -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) ./cmd/vidulumd
build: check-version check-network go.sum
go build -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/vidulumd ./cmd/vidulumd
buildwindows: check-version check-network go.sum
go build -buildmode=exe -mod=readonly $(BUILD_FLAGS) $(BUILD_TAGS) -o $(BUILDDIR)/vidulumd.exe ./cmd/vidulumd
.PHONY: build
build-linux: go.sum
ifeq ($(OS), Linux)
GOOS=linux GOARCH=amd64 $(MAKE) build
else
LEDGER_ENABLED=false GOOS=linux GOARCH=amd64 $(MAKE) build
endif
build-mac: go.sum
ifeq ($(OS), Darwin)
GOOS=darwin GOARCH=amd64 $(MAKE) build
else
LEDGER_ENABLED=false GOOS=darwin GOARCH=amd64 $(MAKE) build
endif
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
@flake8 --show-source --count --statistics
@find . -name "*.nix" -type f | xargs nixpkgs-fmt --check
# 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
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}/.vidulum/config/genesis.json will be used."
@go test $(TEST_TAGS) -mod=readonly $(SIMAPP) -run TestFullAppSimulation -Genesis=${HOME}/.vidulum/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-vidulumdnode:
$(MAKE) -C check-networks/local
# Run a 4-node testnet locally
localnet-start: build-linux build-docker-testvidulumdnode localnet-stop
@if ! [ -f $(BUILDDIR)/node0/.vidulum/config/genesis.json ]; \
then docker run --rm -v $(BUILDDIR):/vidulumd:Z vidulum/vidulumdnode mainnet --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
# 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 vidulumd. 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
###############################################################################
### Documentation ###
###############################################################################
# generate api swagger document
document:
make all -f MakefileDoc
# generate protobuf files
# ./proto -> ./x
proto-all:
make proto-all -f MakefileDoc