forked from sei-protocol/sei-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
564 lines (500 loc) · 22.4 KB
/
Copy pathMakefile
File metadata and controls
564 lines (500 loc) · 22.4 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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
#!/usr/bin/make -f
# Resolve VERSION from branch or tag:
# - Extract vX.Y.Z (+ any suffix) from the branch name when present.
# - Compare only the base vX.Y.Z (strip any suffix) between branch/tag.
# - Prefer tag if bases are equal; otherwise use whichever base is newer.
BRANCH_NAME := $(shell git rev-parse --abbrev-ref HEAD)
BRANCH_VERSION := $(shell echo "$(BRANCH_NAME)" | sed -E -n 's|.*(v[0-9]+\.[0-9]+\.[0-9]+[-A-Za-z0-9._]*).*|\1|p')
TAG_VERSION := $(shell echo $(shell git describe --tags))
VERSION := $(shell \
bv="$(BRANCH_VERSION)"; tv="$(TAG_VERSION)"; \
bb=$$(echo "$$bv" | sed 's/^\(v[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*/\1/'); \
tb=$$(echo "$$tv" | sed 's/^\(v[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*/\1/'); \
if [ -z "$$bv" ]; then echo "$$tv"; \
elif [ -z "$$tv" ] || [ "$$bb" = "$$tb" ]; then echo "$$tv"; \
elif [ "$$(printf '%s\n%s\n' "$$tb" "$$bb" | sort -V | tail -n 1)" = "$$bb" ]; then echo "$$bv"; \
else echo "$$tv"; fi)
COMMIT := $(shell git log -1 --format='%H')
BUILDDIR ?= $(CURDIR)/build
INVARIANT_CHECK_INTERVAL ?= $(INVARIANT_CHECK_INTERVAL:-0)
export PROJECT_HOME=$(shell git rev-parse --show-toplevel)
export GO_PKG_PATH=$(HOME)/go/pkg
export GO111MODULE = on
# process build tags
LEDGER_ENABLED ?= true
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
build_tags += $(BUILD_TAGS)
build_tags := $(strip $(build_tags))
whitespace :=
whitespace += $(whitespace)
comma := ,
build_tags_comma_sep := $(subst $(whitespace),$(comma),$(build_tags))
# process linker flags
ldflags = -X github.com/sei-protocol/sei-chain/sei-cosmos/version.Name=sei \
-X github.com/sei-protocol/sei-chain/sei-cosmos/version.AppName=seid \
-X github.com/sei-protocol/sei-chain/sei-cosmos/version.Version=$(VERSION) \
-X github.com/sei-protocol/sei-chain/sei-cosmos/version.Commit=$(COMMIT) \
-X "github.com/sei-protocol/sei-chain/sei-cosmos/version.BuildTags=$(build_tags_comma_sep)"
# go 1.23+ needs a workaround to link memsize (see https://github.com/fjl/memsize).
# NOTE: this is a terribly ugly and unstable way of comparing version numbers,
# but that's what you get when you do anything nontrivial in a Makefile.
ifeq ($(firstword $(sort go1.23 $(shell go env GOVERSION))), go1.23)
ldflags += -checklinkname=0
endif
ifeq ($(LINK_STATICALLY),true)
ldflags += -linkmode=external -extldflags "-Wl,-z,muldefs -static"
endif
ldflags += $(LDFLAGS)
ldflags := $(strip $(ldflags))
# BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)' -race
BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)'
BUILD_FLAGS_MOCK_BALANCES := -tags "$(build_tags) mock_balances" -ldflags '$(ldflags)'
BUILD_FLAGS_BENCHMARK := -tags "$(build_tags) benchmark mock_balances" -ldflags '$(ldflags)'
#### Command List ####
all: lint install
install: go.sum
go install $(BUILD_FLAGS) ./cmd/seid
install-mock-balances: go.sum
go install $(BUILD_FLAGS_MOCK_BALANCES) ./cmd/seid
install-bench: go.sum
go install $(BUILD_FLAGS_BENCHMARK) ./cmd/seid
install-with-race-detector: go.sum
go install -race $(BUILD_FLAGS) ./cmd/seid
###############################################################################
### RocksDB Backend Support ###
###############################################################################
# Prerequisites:
# - build-essential (gcc, g++, make)
# - pkg-config
# - cmake
# - git
# - zlib development headers
# - bzip2 development headers
# - snappy development headers
# - lz4 development headers
# - zstd development headers
# - jemalloc development headers
# - gflags development headers
# - liburing development headers
#
# Installation on Ubuntu/Debian:
# sudo apt-get update
# sudo apt-get install -y build-essential pkg-config cmake git zlib1g-dev \
# libbz2-dev libsnappy-dev liblz4-dev libzstd-dev libjemalloc-dev \
# libgflags-dev liburing-dev
#
# Usage:
# 1. Build RocksDB (one time): make build-rocksdb
# 2. Install seid with RocksDB: make install-rocksdb
###############################################################################
# Build and install RocksDB from source (one time setup)
build-rocksdb:
@echo "Building RocksDB v8.9.1..."
@if [ -d "rocksdb" ]; then \
echo "rocksdb directory already exists, removing..."; \
rm -rf rocksdb; \
fi
git clone https://github.com/facebook/rocksdb.git
cd rocksdb && \
git checkout v8.9.1 && \
make clean && \
CXXFLAGS='-march=native -DNDEBUG' make -j"$$(nproc)" shared_lib && \
sudo make install-shared
@echo '/usr/local/lib' | sudo tee /etc/ld.so.conf.d/rocksdb.conf
@sudo ldconfig
@echo "RocksDB installation complete!"
# Install seid with RocksDB backend support
install-rocksdb: go.sum
@echo "Checking for RocksDB installation..."
@if ! ldconfig -p | grep -q librocksdb; then \
echo "Error: RocksDB not found. Please run 'make build-rocksdb' first."; \
exit 1; \
fi
@echo "RocksDB found, proceeding with installation..."
CGO_CFLAGS="-I/usr/local/include" \
CGO_LDFLAGS="-L/usr/local/lib -lrocksdb -lz -lbz2 -lsnappy -llz4 -lzstd -ljemalloc" \
go install $(BUILD_FLAGS) -tags "$(build_tags) rocksdbBackend" ./cmd/seid
@echo "seid installed with RocksDB backend support!"
loadtest: go.sum
go build $(BUILD_FLAGS) -o ./build/loadtest ./loadtest/
go.sum: go.mod
@echo "--> Ensure dependencies have not been modified"
@go mod verify
lint:
go run github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.8.0 run
go fmt ./...
go vet ./...
go mod tidy
go mod verify
# Run lint on the sei-db package. Much faster than running lint on the entire project.
# Makes life easier for storage team when iterating on changes inside the sei-db package.
dblint:
go run github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.8.0 run ./sei-db/...
go fmt ./sei-db/...
go vet ./sei-db/...
build:
go build $(BUILD_FLAGS) -o ./build/seid ./cmd/seid
build-verbose:
go build -x -v $(BUILD_FLAGS) -o ./build/seid ./cmd/seid
clean:
rm -rf ./build
build-loadtest:
go build -o build/loadtest ./loadtest/
###############################################################################
### Local testing using docker container ###
###############################################################################
# To start a 4-node cluster from scratch:
# make clean && make docker-cluster-start
# To stop the 4-node cluster:
# make docker-cluster-stop
# If you have already built the binary, you can skip the build:
# make docker-cluster-start-skipbuild
###############################################################################
# Build linux binary on other platforms
build-linux:
@if [ "$$(uname -m)" = "aarch64" ] || [ "$$(uname -m)" = "arm64" ]; then \
echo "Building for ARM64..."; \
GOOS=linux GOARCH=arm64 CGO_ENABLED=1 make build; \
else \
echo "Building for AMD64..."; \
GOOS=linux GOARCH=amd64 CGO_ENABLED=1 CC=x86_64-linux-gnu-gcc make build; \
fi
.PHONY: build-linux
# Auto-detect platform: use arm64 on ARM Macs, amd64 elsewhere
DOCKER_PLATFORM ?= $(shell if [ "$$(uname -m)" = "arm64" ]; then echo "linux/arm64"; else echo "linux/amd64"; fi)
export DOCKER_PLATFORM
# Build docker image for detected platform
build-docker-node:
@echo "Building for $(DOCKER_PLATFORM)..."
@cd docker && docker build --tag sei-chain/localnode localnode --platform $(DOCKER_PLATFORM)
.PHONY: build-docker-node
build-rpc-node:
@cd docker && docker build --tag sei-chain/rpcnode rpcnode --platform linux/x86_64
.PHONY: build-rpc-node
# Integration-test CI: verify images loaded from prepare-cluster artifacts.
ensure-integration-ci-images:
@docker image inspect sei-chain/localnode >/dev/null 2>&1 || (echo "sei-chain/localnode image missing; load integration-docker-images.tar.zst from prepare-cluster" && exit 1)
@docker image inspect sei-chain/rpcnode >/dev/null 2>&1 || (echo "sei-chain/rpcnode image missing; load integration-docker-images.tar.zst from prepare-cluster" && exit 1)
.PHONY: ensure-integration-ci-images
# Build seid once inside the localnode image (integration-test prepare job).
build-seid-in-localnode: build-docker-node
@mkdir -p build $(shell go env GOPATH)/pkg/mod $(shell go env GOCACHE)
@docker run --rm \
--user="$(shell id -u):$(shell id -g)" \
-v $(PROJECT_HOME):/sei-protocol/sei-chain:Z \
-v $(GO_PKG_PATH)/mod:/root/go/pkg/mod:Z \
-v $(shell go env GOCACHE):/root/.cache/go-build:Z \
--platform $(DOCKER_PLATFORM) \
-w /sei-protocol/sei-chain \
-e LEDGER_ENABLED=false \
sei-chain/localnode \
bash -c 'export PATH=/usr/local/go/bin:$$PATH && make clean && make build-linux && mkdir -p build/generated && echo DONE > build/generated/build.complete'
.PHONY: build-seid-in-localnode
# CI variant: assumes localnode image already built by Buildx in prepare-cluster (skips docker build).
build-seid-in-localnode-ci: ensure-integration-ci-images
@mkdir -p build $(shell go env GOPATH)/pkg/mod $(shell go env GOCACHE)
@docker run --rm \
--user="$(shell id -u):$(shell id -g)" \
-v $(PROJECT_HOME):/sei-protocol/sei-chain:Z \
-v $(GO_PKG_PATH)/mod:/root/go/pkg/mod:Z \
-v $(shell go env GOCACHE):/root/.cache/go-build:Z \
--platform $(DOCKER_PLATFORM) \
-w /sei-protocol/sei-chain \
-e LEDGER_ENABLED=false \
sei-chain/localnode \
bash -c 'export PATH=/usr/local/go/bin:$$PATH && make clean && make build-linux && mkdir -p build/generated && echo DONE > build/generated/build.complete'
.PHONY: build-seid-in-localnode-ci
# Images + seid binary for integration-test CI (see .github/workflows/integration-test.yml).
# build-seid-in-localnode already depends on build-docker-node, so omit it here to avoid building localnode twice.
build-integration-ci-artifacts: build-rpc-node build-seid-in-localnode
.PHONY: build-integration-ci-artifacts
# Run a single node docker container
run-local-node: kill-sei-node build-docker-node
@rm -rf $(PROJECT_HOME)/build/generated
docker run --rm \
--name sei-node \
--network host \
--user="$(shell id -u):$(shell id -g)" \
-v $(PROJECT_HOME):/sei-protocol/sei-chain:Z \
-v $(GO_PKG_PATH)/mod:/root/go/pkg/mod:Z \
-v $(shell go env GOCACHE):/root/.cache/go-build:Z \
--platform linux/x86_64 \
sei-chain/localnode
.PHONY: run-local-node
# Run a single rpc state sync node docker container
run-rpc-node: build-rpc-node
docker run --rm \
--name sei-rpc-node \
--network docker_localnet \
--user="$(shell id -u):$(shell id -g)" \
-v $(PROJECT_HOME):/sei-protocol/sei-chain:Z \
-v $(PROJECT_HOME)/../sei-tendermint:/sei-protocol/sei-tendermint:Z \
-v $(PROJECT_HOME)/../sei-cosmos:/sei-protocol/sei-cosmos:Z \
-v $(PROJECT_HOME)/../sei-db:/sei-protocol/sei-db:Z \
-v $(GO_PKG_PATH)/mod:/root/go/pkg/mod:Z \
-v $(shell go env GOCACHE):/root/.cache/go-build:Z \
-p 26668-26670:26656-26658 \
--platform linux/x86_64 \
--env GIGA_STORAGE=${GIGA_STORAGE} \
--env GIGA_FLATKV_ONLY=${GIGA_FLATKV_ONLY} \
--env RECEIPT_BACKEND=${RECEIPT_BACKEND} \
sei-chain/rpcnode
.PHONY: run-rpc-node
run-rpc-node-skipbuild: build-rpc-node
docker run --rm \
--name sei-rpc-node \
--network docker_localnet \
--user="$(shell id -u):$(shell id -g)" \
-v $(PROJECT_HOME):/sei-protocol/sei-chain:Z \
-v $(PROJECT_HOME)/../sei-tendermint:/sei-protocol/sei-tendermint:Z \
-v $(PROJECT_HOME)/../sei-cosmos:/sei-protocol/sei-cosmos:Z \
-v $(PROJECT_HOME)/../sei-db:/sei-protocol/sei-db:Z \
-v $(GO_PKG_PATH)/mod:/root/go/pkg/mod:Z \
-v $(shell go env GOCACHE):/root/.cache/go-build:Z \
-p 26668-26670:26656-26658 \
--platform linux/x86_64 \
--env SKIP_BUILD=true \
--env GIGA_STORAGE=${GIGA_STORAGE} \
--env GIGA_FLATKV_ONLY=${GIGA_FLATKV_ONLY} \
--env RECEIPT_BACKEND=${RECEIPT_BACKEND} \
sei-chain/rpcnode
.PHONY: run-rpc-node
# Integration-test CI: RPC node with prebuilt image and seid (see .github/workflows/integration-test.yml).
# Wait for the localnode cluster to produce block 100 (the first snapshot-interval) before
# starting the rpc node. Without this, SKIP_BUILD=true causes step1_configure_init.sh to
# read a trust-height of ~10-20, find no snapshot during discovery-time, and crash.
run-rpc-node-integration-ci: kill-rpc-node ensure-integration-ci-images
@echo "Waiting for cluster to reach block 100 (first snapshot)..."
@# 192.168.10.10 is the node0 address defined in docker/localnet/; timeout after 15 × 20s = 5 min.
@n=0; until [ "$$(curl -sf http://192.168.10.10:26657/block | jq -r '.block.header.height // 0')" -ge 100 ] 2>/dev/null; do \
n=$$((n+1)); if [ $$n -ge 15 ]; then echo "Timed out waiting for block 100"; exit 1; fi; \
sleep 20; \
done
docker run --rm \
--name sei-rpc-node \
--network docker_localnet \
--user="$(shell id -u):$(shell id -g)" \
-v $(PROJECT_HOME):/sei-protocol/sei-chain:Z \
-v $(PROJECT_HOME)/../sei-tendermint:/sei-protocol/sei-tendermint:Z \
-v $(PROJECT_HOME)/../sei-cosmos:/sei-protocol/sei-cosmos:Z \
-v $(PROJECT_HOME)/../sei-db:/sei-protocol/sei-db:Z \
-v $(GO_PKG_PATH)/mod:/root/go/pkg/mod:Z \
-v $(shell go env GOCACHE):/root/.cache/go-build:Z \
-p 26668-26670:26656-26658 \
--platform linux/x86_64 \
--env SKIP_BUILD=true \
--env GIGA_STORAGE=${GIGA_STORAGE} \
--env GIGA_FLATKV_ONLY=${GIGA_FLATKV_ONLY} \
--env RECEIPT_BACKEND=${RECEIPT_BACKEND} \
sei-chain/rpcnode
.PHONY: run-rpc-node-integration-ci
kill-sei-node:
docker ps --filter name=sei-node --filter status=running -aq | xargs docker kill 2> /dev/null || true
kill-rpc-node:
docker ps --filter name=sei-rpc-node --filter status=running -aq | xargs docker kill 2> /dev/null || true
CLUSTER_ENV_VARS = DOCKER_PLATFORM=$(DOCKER_PLATFORM) USERID=$(shell id -u) GROUPID=$(shell id -g) \
GOCACHE=$(shell go env GOCACHE) NUM_ACCOUNTS=10 \
INVARIANT_CHECK_INTERVAL=$(INVARIANT_CHECK_INTERVAL) \
UPGRADE_VERSION_LIST=$(UPGRADE_VERSION_LIST) \
MOCK_BALANCES=$(MOCK_BALANCES) \
GIGA_EXECUTOR=$(GIGA_EXECUTOR) \
GIGA_OCC=$(GIGA_OCC) \
RECEIPT_BACKEND=$(RECEIPT_BACKEND) \
AUTOBAHN=$(AUTOBAHN) \
GIGA_STORAGE=$(GIGA_STORAGE) \
GIGA_MIGRATE_FROM_MEMIAVL=$(GIGA_MIGRATE_FROM_MEMIAVL) \
GIGA_FLATKV_ONLY=$(GIGA_FLATKV_ONLY)
# Run a 4-node docker containers
docker-cluster-start: docker-cluster-stop build-docker-node
@rm -rf $(PROJECT_HOME)/build/generated
@mkdir -p $(shell go env GOPATH)/pkg/mod
@mkdir -p $(shell go env GOCACHE)
@cd docker && \
if [ "$${DOCKER_DETACH:-}" = "true" ]; then \
DETACH_FLAG="-d"; \
else \
DETACH_FLAG=""; \
fi; \
$(CLUSTER_ENV_VARS) docker compose up $$DETACH_FLAG
.PHONY: localnet-start
# Use this to skip the seid build process
docker-cluster-start-skipbuild: docker-cluster-stop build-docker-node
@rm -rf $(PROJECT_HOME)/build/generated
@cd docker && \
if [ "$${DOCKER_DETACH:-}" = "true" ]; then \
DETACH_FLAG="-d"; \
else \
DETACH_FLAG=""; \
fi; \
$(CLUSTER_ENV_VARS) SKIP_BUILD=true docker compose up $$DETACH_FLAG
.PHONY: localnet-start
# Integration-test matrix jobs: reuse prebuilt images and build/seid from prepare-cluster.
docker-cluster-start-ci: docker-cluster-stop ensure-integration-ci-images
@rm -rf $(PROJECT_HOME)/build/generated
@test -f $(PROJECT_HOME)/build/seid || (echo "build/seid missing; download integration-build.tar.gz from prepare-cluster" && exit 1)
@mkdir -p $(shell go env GOPATH)/pkg/mod
@mkdir -p $(shell go env GOCACHE)
@cd docker && \
if [ "$${DOCKER_DETACH:-}" = "true" ]; then \
DETACH_FLAG="-d"; \
else \
DETACH_FLAG=""; \
fi; \
$(CLUSTER_ENV_VARS) SKIP_BUILD=true docker compose up $$DETACH_FLAG
.PHONY: docker-cluster-start-ci
# Stop 4-node docker containers
docker-cluster-stop:
@cd docker && DOCKER_PLATFORM=$(DOCKER_PLATFORM) USERID=$(shell id -u) GROUPID=$(shell id -g) GOCACHE=$(shell go env GOCACHE) docker compose down
.PHONY: localnet-stop
# Start 4-node cluster with Prometheus and Grafana monitoring
docker-cluster-start-monitoring: docker-cluster-stop-monitoring build-docker-node
@rm -rf $(PROJECT_HOME)/build/generated
@mkdir -p $(shell go env GOPATH)/pkg/mod
@mkdir -p $(shell go env GOCACHE)
@cd docker && \
if [ "$${DOCKER_DETACH:-}" = "true" ]; then \
DETACH_FLAG="-d"; \
else \
DETACH_FLAG=""; \
fi; \
$(CLUSTER_ENV_VARS) docker compose -f docker-compose.yml -f docker-compose.monitoring.yml up --no-attach grafana --no-attach prometheus $$DETACH_FLAG
.PHONY: docker-cluster-start-monitoring
# Stop monitoring containers (Prometheus and Grafana) and cluster
docker-cluster-stop-monitoring:
@cd docker && DOCKER_PLATFORM=$(DOCKER_PLATFORM) USERID=$(shell id -u) GROUPID=$(shell id -g) GOCACHE=$(shell go env GOCACHE) docker compose -f docker-compose.yml -f docker-compose.monitoring.yml down
.PHONY: docker-cluster-stop-monitoring
# Run GIGA EVM integration tests with a GIGA-enabled cluster
# This starts a fresh cluster with GIGA_EXECUTOR and GIGA_OCC enabled,
# runs the EVM GIGA tests, then stops the cluster.
giga-integration-test:
@echo "=== Starting GIGA Integration Tests ==="
@$(MAKE) docker-cluster-stop || true
@rm -rf $(PROJECT_HOME)/build/generated
@GIGA_EXECUTOR=true GIGA_OCC=true DOCKER_DETACH=true $(MAKE) docker-cluster-start
@echo "Waiting for cluster to be ready..."
@timeout=300; elapsed=0; \
while [ $$elapsed -lt $$timeout ]; do \
if [ -f "build/generated/launch.complete" ] && [ $$(cat build/generated/launch.complete | wc -l) -ge 4 ]; then \
echo "All 4 nodes are ready (took $${elapsed}s)"; \
break; \
fi; \
sleep 5; \
elapsed=$$((elapsed + 5)); \
echo " Waiting... ($${elapsed}s elapsed)"; \
done; \
if [ $$elapsed -ge $$timeout ]; then \
echo "ERROR: Cluster failed to start within $${timeout}s"; \
$(MAKE) docker-cluster-stop; \
exit 1; \
fi
@echo "Waiting 10s for nodes to stabilize..."
@sleep 10
@echo "=== Running GIGA EVM Tests ==="
@./integration_test/evm_module/scripts/evm_giga_tests.sh || ($(MAKE) docker-cluster-stop && exit 1)
@echo "=== Stopping cluster ==="
@$(MAKE) docker-cluster-stop
@echo "=== GIGA Integration Tests Complete ==="
.PHONY: giga-integration-test
# Run Autobahn integration tests with an Autobahn-enabled cluster.
autobahn-integration-test:
@# The test drives cluster start/stop itself via TestMain — see
@# integration_test/autobahn/autobahn_test.go. GOWORK=off: ignore ambient
@# go.work; this target only needs stdlib + sei-tendermint.
@GOWORK=off go test -tags autobahn_integration -v -count=1 -timeout 30m ./integration_test/autobahn/...
.PHONY: autobahn-integration-test
# Run a mixed-mode cluster: node 0 uses GIGA_EXECUTOR with OCC, nodes 1-3 use standard V2.
# (node-level GIGA_EXECUTOR/GIGA_OCC values are pinned in docker-compose.giga-mixed.yml)
# Any determinism divergence between giga and V2 will cause the giga node to halt.
docker-cluster-start-giga-mixed: docker-cluster-stop build-docker-node
@rm -rf $(PROJECT_HOME)/build/generated
@mkdir -p $(shell go env GOPATH)/pkg/mod
@mkdir -p $(shell go env GOCACHE)
@cd docker && \
if [ "$${DOCKER_DETACH:-}" = "true" ]; then \
DETACH_FLAG="-d"; \
else \
DETACH_FLAG=""; \
fi; \
DOCKER_PLATFORM=$(DOCKER_PLATFORM) USERID=$(shell id -u) GROUPID=$(shell id -g) GOCACHE=$(shell go env GOCACHE) NUM_ACCOUNTS=10 INVARIANT_CHECK_INTERVAL=${INVARIANT_CHECK_INTERVAL} UPGRADE_VERSION_LIST=${UPGRADE_VERSION_LIST} MOCK_BALANCES=${MOCK_BALANCES} GIGA_EXECUTOR=${GIGA_EXECUTOR} GIGA_OCC=${GIGA_OCC} RECEIPT_BACKEND=${RECEIPT_BACKEND} AUTOBAHN=${AUTOBAHN} GIGA_STORAGE=${GIGA_STORAGE} \
docker compose -f docker-compose.yml -f docker-compose.giga-mixed.yml up $$DETACH_FLAG
.PHONY: docker-cluster-start-giga-mixed
# Run the giga mixed-mode integration test.
# Starts a cluster where only node 0 runs giga (concurrent, OCC), nodes 1-3 run standard V2.
# Then runs hardhat tests. If giga produces different results, node 0 will halt.
giga-mixed-integration-test:
@echo "=== Starting GIGA Mixed-Mode Integration Tests ==="
@echo "=== Node 0: GIGA_EXECUTOR=true GIGA_OCC=true, Nodes 1-3: standard V2 ==="
@$(MAKE) docker-cluster-stop || true
@rm -rf $(PROJECT_HOME)/build/generated
@DOCKER_DETACH=true $(MAKE) docker-cluster-start-giga-mixed
@echo "Waiting for cluster to be ready..."
@timeout=300; elapsed=0; \
while [ $$elapsed -lt $$timeout ]; do \
if [ -f "build/generated/launch.complete" ] && [ $$(cat build/generated/launch.complete | wc -l) -ge 4 ]; then \
echo "All 4 nodes are ready (took $${elapsed}s)"; \
break; \
fi; \
sleep 5; \
elapsed=$$((elapsed + 5)); \
echo " Waiting... ($${elapsed}s elapsed)"; \
done; \
if [ $$elapsed -ge $$timeout ]; then \
echo "ERROR: Cluster failed to start within $${timeout}s"; \
$(MAKE) docker-cluster-stop; \
exit 1; \
fi
@echo "Waiting 10s for nodes to stabilize..."
@sleep 10
@echo "=== Running GIGA EVM Tests (mixed mode) ==="
@./integration_test/evm_module/scripts/evm_giga_tests.sh || (echo "TEST FAILURE - check if node 0 (giga) halted due to consensus mismatch" && $(MAKE) docker-cluster-stop && exit 1)
@echo "=== Stopping cluster ==="
@$(MAKE) docker-cluster-stop
@echo "=== GIGA Mixed-Mode Integration Tests Complete ==="
.PHONY: giga-mixed-integration-test
# Implements test splitting and running. This is pulled directly from
# the github action workflows for better local reproducibility.
GO_TEST_FILES != find $(CURDIR) -name "*_test.go"
# default to four splits by default
NUM_SPLIT ?= 4
$(BUILDDIR):
mkdir -p $@
# The format statement filters out all packages that don't have tests.
# Note we need to check for both in-package tests (.TestGoFiles) and
# out-of-package tests (.XTestGoFiles).
$(BUILDDIR)/packages.txt:$(GO_TEST_FILES) $(BUILDDIR)
go list -f "{{ if (or .TestGoFiles .XTestGoFiles) }}{{ .ImportPath }}{{ end }}" ./... | sort > $@
TARGET_PACKAGE := github.com/sei-protocol/sei-chain/occ_tests
split-test-packages:$(BUILDDIR)/packages.txt
split -d -n l/$(NUM_SPLIT) $< $<.
test-group-%:split-test-packages
@echo "🔍 Checking for special package: $(TARGET_PACKAGE)"
@if grep -q "$(TARGET_PACKAGE)" $(BUILDDIR)/packages.txt.$*; then \
echo "🔒 Found $(TARGET_PACKAGE), running with -parallel=1"; \
PARALLEL="-parallel=1"; \
else \
echo "⚡ Not found, running with -parallel=4"; \
PARALLEL="-parallel=4"; \
fi; \
cat $(BUILDDIR)/packages.txt.$* | xargs go test $$PARALLEL -mod=readonly -timeout=10m -race -coverprofile=$*.profile.out -covermode=atomic -coverpkg=./...