-
Notifications
You must be signed in to change notification settings - Fork 52
/
Makefile
157 lines (131 loc) · 4.47 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
PACKAGES=$(shell go list ./... | grep -v '/simulation')
VERSION := $(shell git describe --abbrev=6 --dirty --always --tags)
COMMIT := $(shell git log -1 --format='%H')
IMPORT_PREFIX=github.com/onomyprotocol
SCAN_FILES := $(shell find . -type f -name '*.go' -not -name '*mock.go' -not -name '*_gen.go' -not -path "*/vendor/*")
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,$(ONOMY_BUILD_OPTIONS)))
build_tags += gcc
endif
build_tags += $(BUILD_TAGS)
build_tags := $(strip $(build_tags))
whitespace :=
whitespace += $(whitespace)
comma := ,
build_tags_comma_sep := $(subst $(whitespace),$(comma),$(build_tags))
ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=onomy \
-X github.com/cosmos/cosmos-sdk/version.AppName=onomy \
-X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \
-X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \
-X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags_comma_sep)"
ldflags += $(LDFLAGS)
ldflags := $(strip $(ldflags))
BUILD_FLAGS := -ldflags '$(ldflags)' -gcflags="all=-N -l"
.PHONY: all
all: lint proto-lint test install
.PHONY: build
build: go.sum
go build $(BUILD_FLAGS) ./cmd/onomyd
.PHONY: install
install: go.sum
go install $(BUILD_FLAGS) ./cmd/onomyd
.PHONY: go.sum
go.sum: go.mod
@echo "--> Ensure dependencies have not been modified"
GO111MODULE=on go mod verify
.PHONY: test
test:
@go test -mod=readonly $(PACKAGES)
# ALCHEMY_KEY env variable is required for the tests execution
.PHONY: test-integration
test-integration:
@go test -v ./tests/... -tags=integration
.PHONY: build-load-test
build-load-test:
go build -tags tmload -o build/onomy-load-test ./tests/tm-load-test/onomy-load-test/
.PHONY: lint
lint:
golangci-lint -c .golangci.yml run
gofmt -d -s $(SCAN_FILES)
.PHONY: format
format:
gofumpt -lang=1.6 -extra -s -w $(SCAN_FILES)
gogroup -order std,other,prefix=$(IMPORT_PREFIX) -rewrite $(SCAN_FILES)
PACKAGE_NAME:=github.com/onomyprotocol/onomy
GOLANG_CROSS_VERSION = v1.22
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
###############################################################################
### Protobuf ###
###############################################################################
.PHONY: proto-gen-all
proto-gen-all: proto-gen-go proto-gen-openapi
.PHONY: proto-gen-openapi
proto-gen-openapi:
bash ./dev/scripts/protoc-swagger-gen.sh
.PHONY: proto-gen-go
proto-gen-go:
bash ./dev/scripts/protocgen.sh
go mod tidy
make format
.PHONY: proto-lint
proto-lint:
buf lint proto --config buf.yaml
###############################################################################
### Docker wrapped commands ###
###############################################################################
.PHONY: in-docker
in-docker:
docker build -t onomy-dev-utils ./dev/tools -f dev/tools/devtools.Dockerfile
docker run -i --rm \
-v ${PWD}:/go/src/github.com/onomyprotocol/onomy:delegated \
--mount source=dev-tools-cache,destination=/cache/,consistency=delegated onomy-dev-utils bash -x -c "\
$(ARGS)"
.PHONY: lint-in-docker
lint-in-docker:
make in-docker ARGS="make lint"
.PHONY: format-in-docker
format-in-docker:
make in-docker ARGS="make format"
.PHONY: all-in-docker
all-in-docker:
make in-docker ARGS="make all"
.PHONY: proto-gen-all-in-docker
proto-gen-all-in-docker:
make in-docker ARGS="make proto-gen-all"