-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
196 lines (141 loc) · 5 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
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
SHELL := /bin/bash
PROJECT_NAME := "github.com/HelliWrold1/cloud"
PKG := "$(PROJECT_NAME)"
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/ | grep -v /api/)
#GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
.PHONY: install
# installation of dependent tools
install:
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
go install github.com/envoyproxy/protoc-gen-validate@latest
go install github.com/srikrsna/protoc-gen-gotag@latest
go install github.com/HelliWrold1/cloud/cmd/protoc-gen-go-gin@latest
go install github.com/HelliWrold1/cloud/cmd/protoc-gen-go-rpc-tmpl@latest
go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2@latest
go install github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc@latest
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
go install github.com/swaggo/swag/cmd/swag@latest
go install github.com/ofabry/go-callvis@latest
go install golang.org/x/pkgsite/cmd/pkgsite@latest
.PHONY: mod
# add missing and remove unused modules
mod:
go mod tidy
.PHONY: fmt
# go format *.go files
fmt:
gofmt -s -w .
.PHONY: ci-lint
# check the code specification against the rules in the .golangci.yml file
ci-lint: fmt
golangci-lint run ./...
.PHONY: dep
# download dependencies to the directory vendor
dep:
go mod download
.PHONY: test
# go test *_test.go files, the parameter -count=1 means that caching is disabled
test:
go test -count=1 -short ${PKG_LIST}
.PHONY: cover
# generate test coverage
cover:
go test -short -coverprofile=cover.out -covermode=atomic ${PKG_LIST}
go tool cover -html=cover.out
.PHONY: docs
# generate swagger docs, the host address can be changed via parameters, e.g. make docs HOST=192.168.3.37
docs: mod fmt
@bash scripts/swag-docs.sh $(HOST)
.PHONY: graph
# generate interactive visual function dependency graphs
graph:
@echo "generating graph ......"
@cp -f cmd/cloud/main.go .
go-callvis -skipbrowser -format=svg -nostd -file=cloud github.com/HelliWrold1/cloud
@rm -f main.go cloud.gv
.PHONY: proto
# generate *.pb.go codes from *.proto files
proto: mod fmt
@bash scripts/protoc.sh
.PHONY: proto-doc
# generate doc from *.proto files
proto-doc:
@bash scripts/proto-doc.sh
.PHONY: build
# build cloud for linux amd64 binary
build:
@echo "building 'cloud', linux binary file will output to 'cmd/cloud'"
@cd cmd/cloud && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GOPROXY=https://goproxy.cn,direct go build
.PHONY: run
# run service
run:
@bash scripts/run.sh
.PHONY: run-nohup
# run server with nohup to local, if you want to stop the server, pass the parameter stop, e.g. make run-nohup CMD=stop
run-nohup:
@bash scripts/run-nohup.sh $(CMD)
.PHONY: docker-image
# build image for local docker, tag=latest, use binary files to build
docker-image: build
@bash scripts/image-build-local.sh
.PHONY: image-build
# build image for remote repositories, use binary files to build, e.g. make image-build REPO_HOST=addr TAG=latest
image-build:
@bash scripts/image-build.sh $(REPO_HOST) $(TAG)
.PHONY: image-build2
# build image for remote repositories, phase II build, e.g. make image-build2 REPO_HOST=addr TAG=latest
image-build2:
@bash scripts/image-build2.sh $(REPO_HOST) $(TAG)
.PHONY: image-build-rpc-test
# build rpc test image for remote repositories, e.g. make image-build-rpc-test REPO_HOST=addr TAG=latest
image-build-rpc-test:
@bash scripts/image-rpc-test.sh $(REPO_HOST) $(TAG)
.PHONY: image-push
# push docker image to remote repositories, e.g. make image-push REPO_HOST=addr TAG=latest
image-push:
@bash scripts/image-push.sh $(REPO_HOST) $(TAG)
.PHONY: deploy-k8s
# deploy service to k8s
deploy-k8s:
@bash scripts/deploy-k8s.sh
.PHONY: deploy-docker
# deploy service to local docker, you must first run 'make docker-image' to generate a docker image, if you want to stop the server, pass the parameter stop, e.g. make deploy-docker CMD=stop
deploy-docker:
@bash scripts/deploy-docker.sh $(CMD)
.PHONY: binary-package
# packaged binary files
binary-package: build
@bash scripts/binary-package.sh
.PHONY: deploy-binary
# deploy binary, e.g. make deploy-binary USER=root PWD=123456 IP=192.168.1.10
deploy-binary: binary-package
@expect scripts/deploy-binary.sh $(USER) $(PWD) $(IP)
.PHONY: clean
# clean binary file, cover.out, template file
clean:
@rm -vrf cmd/cloud/cloud
@rm -vrf cover.out
@rm -vrf main.go cloud.gv
@rm -vrf internal/ecode/*go.gen.*
@rm -vrf internal/handller/*go.gen.*
@rm -vrf internal/service/*go.gen.*
@rm -rf cloud-binary.tar.gz
@echo "clean finished"
# show help
help:
@echo ''
@echo 'Usage:'
@echo ' make [target]'
@echo ''
@echo 'Targets:'
@awk '/^[a-zA-Z\-\_0-9]+:/ { \
helpMessage = match(lastLine, /^# (.*)/); \
if (helpMessage) { \
helpCommand = substr($$1, 0, index($$1, ":")-1); \
helpMessage = substr(lastLine, RSTART + 2, RLENGTH); \
printf "\033[36m %-22s\033[0m %s\n", helpCommand,helpMessage; \
} \
} \
{ lastLine = $$0 }' $(MAKEFILE_LIST)
.DEFAULT_GOAL := all