-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
75 lines (59 loc) · 2.82 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
.PHONY: proto-format proto-lint proto-gen format lint test-e2e test-unit build
all: proto-all format lint test-unit build
###############################################################################
### Build ###
###############################################################################
build:
@echo "🤖 Building simd..."
@cd simapp && make build
@echo "✅ Completed build!"
###############################################################################
### Formatting & Linting ###
###############################################################################
gofumpt_cmd=mvdan.cc/gofumpt
format:
@echo "🤖 Running formatter..."
@go run $(gofumpt_cmd) -l -w .
@echo "✅ Completed formatting!"
###############################################################################
### Protobuf ###
###############################################################################
BUF_VERSION=1.34.0
BUILDER_VERSION=0.14.0
proto-all: proto-format proto-lint proto-gen
proto-format:
@echo "🤖 Running protobuf formatter..."
@docker run --rm --volume "$(PWD)":/workspace --workdir /workspace \
bufbuild/buf:$(BUF_VERSION) format --diff --write
@echo "✅ Completed protobuf formatting!"
proto-gen:
@echo "🤖 Generating code from protobuf..."
@docker run --rm --volume "$(PWD)":/workspace --workdir /workspace \
ghcr.io/cosmos/proto-builder:$(BUILDER_VERSION) sh ./proto/generate.sh
@echo "✅ Completed code generation!"
proto-lint:
@echo "🤖 Running protobuf linter..."
@docker run --rm --volume "$(PWD)":/workspace --workdir /workspace \
bufbuild/buf:$(BUF_VERSION) lint
@echo "✅ Completed protobuf linting!"
###############################################################################
### Testing ###
###############################################################################
heighliner:
@echo "🤖 Building image..."
@heighliner build --chain noble-fiattokenfactory-simd --local 1> /dev/null
@echo "✅ Completed build!"
test: test-e2e test-unit
test-e2e:
@echo "🤖 Running e2e tests..."
@cd e2e && GOWORK=off go test -timeout 0 -race -v ./...
@echo "✅ Completed e2e tests!"
test-unit:
@echo "🤖 Running unit tests..."
@go test -coverprofile=cover.out -race -count=1 ./x/...
@echo "✅ Completed unit tests!"
@grep -v -f .covignore cover.out > cover.filtered.out && rm cover.out
@echo "\n📝 Detailed coverage report, excluding files in .covignore:"
@go tool cover -func cover.filtered.out
@go tool cover -html cover.filtered.out -o cover.html && rm cover.filtered.out
@echo "\n📝 Produced html coverage report at cover.html, excluding files in .covignore"