-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
125 lines (97 loc) · 4.08 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
###############################################################################
### Variables ###
###############################################################################
DOCKER := $(shell which docker)
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
COMMIT := $(shell git log -1 --format='%H')
# Get version from git tag or branch+commit
ifeq (,$(VERSION))
VERSION := $(shell git describe --exact-match 2>/dev/null)
ifeq (,$(VERSION))
VERSION := $(BRANCH)-$(COMMIT)
endif
endif
# Build flags
ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=mini \
-X github.com/cosmos/cosmos-sdk/version.AppName=minid \
-X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \
-X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT)
BUILD_FLAGS := -ldflags '$(ldflags)'
# Protobuf
protoVer=0.14.0
protoImageName=ghcr.io/cosmos/proto-builder:$(protoVer)
protoImage=$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace $(protoImageName)
# Linting
golangci_lint_cmd=golangci-lint
golangci_version=v1.51.2
###############################################################################
### Targets ###
###############################################################################
.PHONY: all install init clean build test lint proto-all
all: install
install: go.sum
@echo "--> ensure dependencies have not been modified"
@go mod verify
@echo "--> installing minid"
@go install $(BUILD_FLAGS) -mod=readonly ./cmd/minid
init:
@echo "--> initializing chain"
./scripts/init.sh
build:
@echo "--> building minid binary"
@go build $(BUILD_FLAGS) -mod=readonly -o bin/minid ./cmd/minid
clean:
@echo "--> cleaning up build artifacts"
rm -rf bin/
rm -rf ~/.minid
###############################################################################
### Testing ###
###############################################################################
test:
@echo "--> running tests"
@go test -v ./...
test-integration:
@echo "--> running integration tests"
cd integration; go test -v ./...
###############################################################################
### Protobuf ###
###############################################################################
proto-all: proto-format proto-lint proto-gen
proto-gen:
@echo "Generating protobuf files..."
@$(protoImage) sh ./scripts/protocgen.sh
@go mod tidy
proto-format:
@$(protoImage) find ./ -name "*.proto" -exec clang-format -i {} \;
proto-lint:
@$(protoImage) buf lint proto/ --error-format=json
###############################################################################
### Linting ###
###############################################################################
lint:
@echo "--> running linter"
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@$(golangci_version)
@$(golangci_lint_cmd) run ./... --timeout 15m
lint-fix:
@echo "--> running linter and fixing issues"
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@$(golangci_version)
@$(golangci_lint_cmd) run ./... --fix --timeout 15m
# Ensure go.sum is up to date
go.sum: go.mod
@echo "--> ensure dependencies have not been modified"
@go mod verify
@go mod tidy
###############################################################################
### Helpers ###
###############################################################################
help:
@echo "Available targets:"
@echo " make install - Install minid binary"
@echo " make init - Initialize the chain"
@echo " make build - Build minid binary"
@echo " make clean - Clean build artifacts"
@echo " make test - Run tests"
@echo " make lint - Run linter"
@echo " make proto-all- Generate and lint protobuf"
@echo " make help - Show this help message"
.DEFAULT_GOAL := help