-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
527 lines (421 loc) · 16.5 KB
/
Copy pathMakefile
File metadata and controls
527 lines (421 loc) · 16.5 KB
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
#!/usr/bin/make -f
# Load .env file if it exists
-include .env
export
GO_TOOLCHAIN ?= go1.25.10
VULNCHECK_GO_TOOLCHAIN ?= go1.26.4
GO := env GOTOOLCHAIN=$(GO_TOOLCHAIN) go
# Configure git to use HTTPS+Token for private repositories if GITHUB_TOKEN is set
ifdef GITHUB_TOKEN
$(shell git config --global url."https://$(GITHUB_TOKEN):@github.com/".insteadOf "https://github.com/" 2>/dev/null)
DOCKER_BUILD_ARGS += --build-arg GITHUB_TOKEN=$(GITHUB_TOKEN)
endif
# Exclude sdk/client: integration tests against local Comet RPC (26657) and EVM (8545)
PACKAGES_NOSIMULATION=$(shell $(GO) list ./... | grep -v '/simulation' | grep -v '/sdk/client')
VERSION ?= $(shell echo $(shell git describe --tags --always) | sed 's/^v//')
TMVERSION := $(shell $(GO) list -m github.com/cometbft/cometbft | sed 's:.* ::')
COMMIT := $(shell git log -1 --format='%H')
LEDGER_ENABLED ?= true
BINDIR ?= $(GOPATH)/bin
EVMOS_BINARY = mocad
BUILDDIR ?= $(CURDIR)/build
HTTPS_GIT := https://github.com/mocachain/moca.git
DOCKER := $(shell which docker)
DOCKER_COMPOSE := $(DOCKER) compose
NAMESPACE := mocachain
PROJECT := moca
DOCKER_IMAGE := $(NAMESPACE)/$(PROJECT)
COMMIT_HASH := $(shell git rev-parse --short=7 HEAD)
DOCKER_TAG := $(COMMIT_HASH)
# e2e env
MOUNT_PATH := $(shell pwd)/build/:/root/
E2E_SKIP_CLEANUP := false
E2E_KIND_DIR := e2e/kind
export GO111MODULE = on
# Default target executed when no arguments are given to make.
default_target: all
.PHONY: default_target
# process build tags
build_tags = netgo
ifeq ($(LEDGER_ENABLED),true)
ifeq ($(OS),Windows_NT)
GCCEXE = $(shell where gcc.exe 2> NUL)
ifeq ($(GCCEXE),)
$(error gcc.exe not installed for ledger support, please install or set LEDGER_ENABLED=false)
else
build_tags += ledger
endif
else
UNAME_S = $(shell uname -s)
ifeq ($(UNAME_S),OpenBSD)
$(warning OpenBSD detected, disabling ledger support (https://github.com/cosmos/cosmos-sdk/issues/1988))
else
GCC = $(shell command -v gcc 2> /dev/null)
ifeq ($(GCC),)
$(error gcc not installed for ledger support, please install or set LEDGER_ENABLED=false)
else
build_tags += ledger
endif
endif
endif
endif
ifeq (cleveldb,$(findstring cleveldb,$(COSMOS_BUILD_OPTIONS)))
build_tags += gcc
endif
build_tags += $(BUILD_TAGS)
build_tags := $(strip $(build_tags))
# process linker flags
ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=moca \
-X github.com/cosmos/cosmos-sdk/version.AppName=$(EVMOS_BINARY) \
-X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \
-X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \
-X github.com/cometbft/cometbft/version.TMCoreSemVer=$(TMVERSION)
# DB backend selection
ifeq (cleveldb,$(findstring cleveldb,$(COSMOS_BUILD_OPTIONS)))
ldflags += -X github.com/cosmos/cosmos-sdk/types.DBBackend=cleveldb
endif
ifeq (badgerdb,$(findstring badgerdb,$(COSMOS_BUILD_OPTIONS)))
ldflags += -X github.com/cosmos/cosmos-sdk/types.DBBackend=badgerdb
endif
# handle rocksdb
ifeq (rocksdb,$(findstring rocksdb,$(COSMOS_BUILD_OPTIONS)))
CGO_ENABLED=1
build_tags += rocksdb
ldflags += -X github.com/cosmos/cosmos-sdk/types.DBBackend=rocksdb
endif
# handle boltdb
ifeq (boltdb,$(findstring boltdb,$(COSMOS_BUILD_OPTIONS)))
build_tags += boltdb
ldflags += -X github.com/cosmos/cosmos-sdk/types.DBBackend=boltdb
endif
# add build tags to linker flags
whitespace := $(subst ,, )
comma := ,
build_tags_comma_sep := $(subst $(whitespace),$(comma),$(build_tags))
ldflags += -X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags_comma_sep)"
ifeq (,$(findstring nostrip,$(COSMOS_BUILD_OPTIONS)))
ldflags += -w -s
endif
ldflags += $(LDFLAGS)
ldflags := $(strip $(ldflags))
BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)'
# check for nostrip option
ifeq (,$(findstring nostrip,$(COSMOS_BUILD_OPTIONS)))
BUILD_FLAGS += -trimpath
endif
# check if no optimization option is passed
# used for remote debugging
ifneq (,$(findstring nooptimization,$(COSMOS_BUILD_OPTIONS)))
BUILD_FLAGS += -gcflags "all=-N -l"
endif
# # The below include contains the tools and runsim targets.
# include contrib/devtools/Makefile
###############################################################################
### Build ###
###############################################################################
BUILD_TARGETS := build install
build: BUILD_ARGS=-o $(BUILDDIR)/
build-linux:
GOOS=linux GOARCH=amd64 LEDGER_ENABLED=false $(MAKE) build
$(BUILD_TARGETS): go.sum $(BUILDDIR)/
$(GO) $@ $(BUILD_FLAGS) $(BUILD_ARGS) ./...
$(BUILDDIR)/:
mkdir -p $(BUILDDIR)/
build-reproducible: go.sum
$(DOCKER) rm latest-build || true
$(DOCKER) run --volume=$(CURDIR):/sources:ro \
--env TARGET_PLATFORMS='linux/amd64' \
--env APP=mocad \
--env VERSION=$(VERSION) \
--env COMMIT=$(COMMIT) \
--env CGO_ENABLED=1 \
--env LEDGER_ENABLED=$(LEDGER_ENABLED) \
--name latest-build tendermintdev/rbuilder:latest
$(DOCKER) cp -a latest-build:/home/builder/artifacts/ $(CURDIR)/
build-docker:
$(DOCKER) build $(DOCKER_BUILD_ARGS) -t ${DOCKER_IMAGE}:${DOCKER_TAG} .
$(DOCKER) tag ${DOCKER_IMAGE}:${DOCKER_TAG} ${DOCKER_IMAGE}:latest
$(DOCKER) tag ${DOCKER_IMAGE}:${DOCKER_TAG} ${DOCKER_IMAGE}:${COMMIT_HASH}
push-docker: build-docker
$(DOCKER) push ${DOCKER_IMAGE}:${DOCKER_TAG}
$(DOCKER) push ${DOCKER_IMAGE}:latest
$(MOCKS_DIR):
mkdir -p $(MOCKS_DIR)
distclean: clean tools-clean
clean:
rm -rf \
$(BUILDDIR)/ \
artifacts/ \
tmp-swagger-gen/ \
deployment/localup/nodes/ \
deployment/localup/mocad
all: build
build-all: tools build lint test vulncheck
.PHONY: distclean clean build-all
###############################################################################
### Tools & Dependencies ###
###############################################################################
TOOLS_DESTDIR ?= $(GOPATH)/bin
STATIK = $(TOOLS_DESTDIR)/statik
RUNSIM = $(TOOLS_DESTDIR)/runsim
# 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: $(RUNSIM)
$(RUNSIM):
@echo "Installing runsim..."
@(cd /tmp && ${GO_MOD} $(GO) install github.com/cosmos/tools/cmd/runsim@master)
statik: $(STATIK)
$(STATIK):
@echo "Installing statik..."
@(cd /tmp && $(GO) install github.com/rakyll/statik@v0.1.6)
contract-tools:
ifeq (, $(shell which stringer))
@echo "Installing stringer..."
@$(GO) install golang.org/x/tools/cmd/stringer@latest
else
@echo "stringer already installed; skipping..."
endif
ifeq (, $(shell which go-bindata))
@echo "Installing go-bindata..."
@$(GO) install github.com/kevinburke/go-bindata/go-bindata@latest
else
@echo "go-bindata already installed; skipping..."
endif
ifeq (, $(shell which gencodec))
@echo "Installing gencodec..."
@$(GO) install github.com/fjl/gencodec@latest
else
@echo "gencodec already installed; skipping..."
endif
ifeq (, $(shell which protoc-gen-go))
@echo "Installing protoc-gen-go..."
@$(GO) install github.com/fjl/gencodec@latest
@$(GO) install google.golang.org/protobuf/cmd/protoc-gen-go@latest
else
@echo "protoc-gen-go already installed; skipping..."
endif
ifeq (, $(shell which protoc-gen-go-grpc))
@$(GO) install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
else
@echo "protoc-gen-go-grpc already installed; skipping..."
endif
ifeq (, $(shell which solcjs))
@echo "Installing solcjs..."
@npm install -g solc@0.5.11
else
@echo "solcjs already installed; skipping..."
endif
tools: tools-stamp
tools-stamp: contract-tools docs-tools statik runsim
# Create dummy file to satisfy dependency and avoid
# rebuilding when this Makefile target is hit twice
# in a row.
touch $@
tools-clean:
rm -f $(RUNSIM)
rm -f tools-stamp
.PHONY: runsim statik tools contract-tools tools-stamp tools-clean
go.sum: go.mod
echo "Ensure dependencies have not been modified ..." >&2
$(GO) mod verify
$(GO) mod tidy
vulncheck: $(BUILDDIR)/
VULNCHECK_GOROOT="$$(env GOTOOLCHAIN=$(VULNCHECK_GO_TOOLCHAIN) go env GOROOT)" && \
PATH="$$VULNCHECK_GOROOT/bin:$$PATH" GOBIN=$(BUILDDIR) go install golang.org/x/vuln/cmd/govulncheck@v1.1.4
VULNCHECK_GOROOT="$$(env GOTOOLCHAIN=$(VULNCHECK_GO_TOOLCHAIN) go env GOROOT)" && \
PATH="$$VULNCHECK_GOROOT/bin:$$PATH" $(BUILDDIR)/govulncheck ./...
###############################################################################
### Documentation ###
###############################################################################
update-swagger-docs: statik
$(BINDIR)/statik -src=client/docs/swagger-ui -dest=client/docs -f -m
@if [ -n "$(git status --porcelain)" ]; then \
echo "\033[91mSwagger docs are out of sync!!!\033[0m";\
exit 1;\
else \
echo "\033[92mSwagger docs are in sync\033[0m";\
fi
.PHONY: update-swagger-docs
godocs:
@echo "--> Wait a few seconds and visit http://localhost:6060/pkg/github.com/mocachain/moca"
godoc -http=:6060
###############################################################################
### Tests & Simulation ###
###############################################################################
test: test-unit
test-all: test-unit test-race
# sdk/client and e2e/* are excluded because they require a running chain;
# run e2e suites via `make e2e-fw-test TEST=...` instead.
PACKAGES_UNIT=$(shell $(GO) list ./... | grep -v -E '/sdk/client|/e2e($$|/)')
TEST_PACKAGES=./...
TEST_TARGETS := test-unit test-unit-cover test-race
# Test runs-specific rules. To add a new test target, just add
# a new rule, customise ARGS or TEST_PACKAGES ad libitum, and
# append the new rule to the TEST_TARGETS list.
test-unit: ARGS=-timeout=15m -race
test-unit: TEST_PACKAGES=$(PACKAGES_UNIT)
test-race: ARGS=-race
test-race: TEST_PACKAGES=$(PACKAGES_NOSIMULATION)
$(TEST_TARGETS): run-tests
test-unit-cover: ARGS=-timeout=15m -race -coverprofile=coverage.txt -covermode=atomic
test-unit-cover: TEST_PACKAGES=$(PACKAGES_UNIT)
###############################################################################
### Kind E2E Tests ###
###############################################################################
# Run all Kind e2e framework tests
e2e-fw:
@bash $(E2E_KIND_DIR)/framework/runner.sh
# Run a single test: make e2e-fw-test TEST=smoke
# Validator parity (moca-devcontainer check-validators.sh test): TEST=validator_devcontainer_parity
# RPC + balances/validators parity (devcontainer RPC/rpc.sh + check-validators): TEST=rpc_suite
e2e-fw-test:
@bash $(E2E_KIND_DIR)/tests/test_$(TEST).sh
# Run without cleanup (for dev): make e2e-fw-dev TEST=smoke
e2e-fw-dev:
@FW_SKIP_CLEANUP=true bash $(E2E_KIND_DIR)/tests/test_$(TEST).sh
# Individual Kind e2e steps
e2e-kind-setup:
@bash $(E2E_KIND_DIR)/scripts/setup-kind.sh
e2e-kind-build:
@bash $(E2E_KIND_DIR)/scripts/build-images.sh
e2e-kind-deploy:
@bash $(E2E_KIND_DIR)/scripts/deploy.sh
e2e-kind-cleanup:
@bash $(E2E_KIND_DIR)/scripts/cleanup.sh
.PHONY: e2e-fw e2e-fw-test e2e-fw-dev e2e-kind-setup e2e-kind-build e2e-kind-deploy e2e-kind-cleanup
run-tests:
ifneq (,$(shell which tparse 2>/dev/null))
$(GO) test -mod=readonly -json $(ARGS) $(EXTRA_ARGS) $(TEST_PACKAGES) | tparse
else
$(GO) test -mod=readonly $(ARGS) $(EXTRA_ARGS) $(TEST_PACKAGES)
endif
test-import:
@$(GO) test ./tests/importer -v --vet=off --run=TestImportBlocks --datadir tmp \
--blockchain blockchain
rm -rf tests/importer/tmp
.PHONY: run-tests test test-all test-import $(TEST_TARGETS)
benchmark:
@$(GO) test -mod=readonly -bench=. $(PACKAGES_NOSIMULATION)
.PHONY: benchmark
###############################################################################
### Linting ###
###############################################################################
lint:
golangci-lint run --new-from-rev=HEAD~1
lint-fix:
golangci-lint run --fix --out-format=tab --issues-exit-code=0
.PHONY: lint lint-fix
format:
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -name '*.pb.go' -not -name '*.pb.gw.go' | xargs gofumpt -w -l
.PHONY: format
###############################################################################
### Protobuf ###
###############################################################################
protoVer=0.13.0
protoImageName=ghcr.io/cosmos/proto-builder:$(protoVer)
protoImage=$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace --user 0 $(protoImageName)
# ------
# NOTE: If you are experiencing problems running these commands, try deleting
# the docker images and execute the desired command again.
#
proto-all: proto-format proto-lint proto-gen proto-pulsar
proto-gen:
@echo "Generating Protobuf files"
$(protoImage) sh ./scripts/protocgen.sh
proto-swagger-gen:
@echo "Downloading Protobuf dependencies"
@make proto-download-deps
@echo "Generating Protobuf Swagger"
$(protoImage) sh ./scripts/protoc-swagger-gen.sh
proto-pulsar:
@echo "Generating Pulsar proto code"
$(protoImage) sh ./scripts/protocgen-pulsar.sh
proto-format:
@echo "Formatting Protobuf files"
$(protoImage) find ./ -name *.proto -exec clang-format -i {} \;
proto-lint:
@echo "Linting Protobuf files"
@$(protoImage) buf lint --error-format=json
proto-check-breaking:
@echo "Checking Protobuf files for breaking changes"
$(protoImage) buf breaking --against $(HTTPS_GIT)#branch=main
proto-download-deps:
bash ./scripts/proto-download-deps.sh
.PHONY: proto-all proto-gen proto-pulsar proto-format proto-lint proto-check-breaking proto-swagger-gen
###############################################################################
### Localnet ###
###############################################################################
# Build image for a local testnet
localnet-build:
@$(MAKE) build-docker
# Start a 4-node testnet locally
localnet-start: localnet-stop localnet-build
@$(DOCKER) network inspect moca-network >/dev/null 2>&1 || $(DOCKER) network create moca-network
$(DOCKER_COMPOSE) up -d
# Stop testnet
localnet-stop:
$(DOCKER_COMPOSE) down --remove-orphans
# Clean testnet
localnet-clean:
$(DOCKER_COMPOSE) down -v --remove-orphans
rm -rf deployment/dockerup/.local
rm -f deployment/dockerup/genesis.json deployment/dockerup/init_done
rm -f deployment/dockerup/persistent_peers.txt deployment/dockerup/validator.json
# Clean testnet
localnet-show-logstream:
$(DOCKER_COMPOSE) logs --tail=1000 -f
.PHONY: localnet-build localnet-start localnet-stop localnet-clean localnet-show-logstream
###############################################################################
### Releasing ###
###############################################################################
PACKAGE_NAME:=github.com/mocachain/moca
GOLANG_CROSS_VERSION = v1.25
GOPATH ?= $(HOME)/go
REPO_OWNER ?= mocachain
release-dry-run:
docker run \
--rm \
--privileged \
-e CGO_ENABLED=1 \
-e REPO_OWNER=$(REPO_OWNER) \
-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) \
ghcr.io/goreleaser/goreleaser-cross:${GOLANG_CROSS_VERSION} \
--clean --skip validate --skip publish --snapshot
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) \
ghcr.io/goreleaser/goreleaser-cross:${GOLANG_CROSS_VERSION} \
release --clean --skip validate
.PHONY: release-dry-run release
###############################################################################
### Docker Compose ###
###############################################################################
# build-docker-compose-file
build-dcf:
$(GO) run cmd/ci/main.go
start-dc:
docker compose up -d
docker compose ps
stop-dc:
docker compose down --volumes
.PHONY: build-dcf start-dc stop-dc
precompile:
@cd x/evm/precompiles && sh compile.sh
verify:
@cd solidity && node verify.js