-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
306 lines (267 loc) · 7.17 KB
/
Makefile
File metadata and controls
306 lines (267 loc) · 7.17 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
# Go params
GO_BIN_FOLDER=$(GOPATH)/bin
GO_PREFIX=GOOS=${GOOS} GOARM=${GOARM} GOARCH=${GOARCH} PATH=${PATH}:$(GO_BIN_FOLDER)
GOCMD=$(GO_PREFIX) GO111MODULE=on go
GOCMD_NO_MOD=$(GO_PREFIX) GO111MODULE=off go
GOGET=$(GOCMD) get
GOBUILD=$(GOCMD) build -ldflags="-s -w" ${BUILD_EXTRA}
GOGENERATE=$(GOCMD_NO_MOD) generate
MOD=$(GOCMD) mod tidy
MOD_RESTORE=$(GOGET) -v -d ./... && $(GOCMD) mod vendor
GOVERALLS=$(GO_BIN_FOLDER)/goveralls
PLUGINS_LOCATION=$(GOPATH)/src/go-home.io/x/providers/
BIN_FOLDER=${CURDIR}/bin
BIN_NAME=$(BIN_FOLDER)/go-home
PLUGINS_BINS=$(BIN_FOLDER)/plugins
LINTER=$(GO_BIN_FOLDER)/golangci-lint -c ${CURDIR}/.golangci.yml run
.PHONY: utilities-build utilities-ci utilities build-server build-plugins build run-server run-worker test-local test vendor-cleanup run-only-server dep-shared-update generate-local todo
define build_plugins_task =
set -e
rm -rf $(PLUGINS_BINS)
cd $(PLUGINS_LOCATION)
for plugin_type in *; do
if [ -d "$${plugin_type}" ]; then
for plugin in $${plugin_type}/*; do
if [ -d "$${plugin}" ]; then
cd $${plugin}
echo "======================================="
echo "Building $${plugin}"
echo "======================================="
$(GOBUILD) -buildmode=plugin -o $(PLUGINS_BINS)/$${plugin}.so .
cd $(PLUGINS_LOCATION)
fi;
done;
fi;
done;
endef
define validate_dependencies =
set -e
echo "======================================="
echo "Validating server"
echo "======================================="
cd plugins
$(MOD)
cd ..
$(MOD)
cd $(PLUGINS_LOCATION)
for plugin_type in *; do
if [ -d "$${plugin_type}" ]; then
for plugin in $${plugin_type}/*; do
if [ -d "$${plugin}" ]; then
cd $${plugin}
echo "======================================="
echo "Validating $${plugin}"
echo "======================================="
$(MOD)
cd $(PLUGINS_LOCATION)
fi;
done;
fi;
done;
endef
define update_shared_package_dependency =
set -e
echo "======================================="
echo "Updating server"
echo "======================================="
cd plugins
$(MOD)
cd ..
$(GOGET) go-home.io/x/server/plugins@master
$(MOD)
cd $(PLUGINS_LOCATION)
for plugin_type in *; do
if [ -d "$${plugin_type}" ]; then
for plugin in $${plugin_type}/*; do
if [ -d "$${plugin}" ]; then
cd $${plugin}
echo "======================================="
echo "Updating $${plugin}"
echo "======================================="
$(GOGET) go-home.io/x/server/plugins@master
$(MOD)
cd $(PLUGINS_LOCATION)
fi;
done;
fi;
done;
endef
define restore_dependencies =
set -e
echo "======================================="
echo "Validating server"
echo "======================================="
$(MOD_RESTORE)
cd plugins
$(MOD_RESTORE)
cd $(PLUGINS_LOCATION)
for plugin_type in *; do
if [ -d "$${plugin_type}" ]; then
for plugin in $${plugin_type}/*; do
if [ -d "$${plugin}" ]; then
cd $${plugin}
echo "======================================="
echo "Validating $${plugin}"
echo "======================================="
$(MOD_RESTORE)
cd $(PLUGINS_LOCATION)
fi;
done;
fi;
done;
endef
define lint_all =
set -e
echo "======================================="
echo "Linting server"
echo "======================================="
$(LINTER)
cd $(PLUGINS_LOCATION)
for plugin_type in *; do
if [ -d "$${plugin_type}" ]; then
for plugin in $${plugin_type}/*; do
if [ -d "$${plugin}" ]; then
echo "======================================="
echo "Linting $${plugin}"
echo "======================================="
cd $${plugin}
$(LINTER) --disable=unused --disable=unparam
cd $(PLUGINS_LOCATION)
fi;
done;
fi;
done;
endef
define extract_comments =
set -e
echo "======================================="
echo "Checking server"
echo "======================================="
$(GO_BIN_FOLDER)/golangci-lint run --no-config --disable-all -E godox
cd $(PLUGINS_LOCATION)
for plugin_type in *; do
if [ -d "$${plugin_type}" ]; then
for plugin in $${plugin_type}/*; do
if [ -d "$${plugin}" ]; then
echo "======================================="
echo "Checking $${plugin}"
echo "======================================="
cd $${plugin}
$(GO_BIN_FOLDER)/golangci-lint run --no-config --disable-all -E godox
cd $(PLUGINS_LOCATION)
fi;
done;
fi;
done;
endef
define lint_cleanup =
set -e
echo "======================================="
echo "Cleaning up vendoring"
echo "======================================="
cd $(CURDIR)
rm -rf vendor
cd plugins
rm -rf vendor
cd $(PLUGINS_LOCATION)
for plugin_type in *; do
if [ -d "$${plugin_type}" ]; then
for plugin in $${plugin_type}/*; do
if [ -d "$${plugin}" ]; then
cd $${plugin}
rm -rf vendor
cd $(PLUGINS_LOCATION)
fi;
done;
fi;
done;
endef
define go_generate =
set -e
echo "======================================="
echo "Autogenerating"
echo "======================================="
cd $(CURDIR)
$(GOGENERATE) -v ./...
cd plugins
$(GOGENERATE) -v ./...
cd $(PLUGINS_LOCATION)
for plugin_type in *; do
if [ -d "$${plugin_type}" ]; then
for plugin in $${plugin_type}/*; do
if [ -d "$${plugin}" ]; then
cd $${plugin}
$(GOGENERATE) -v ./...
cd $(PLUGINS_LOCATION)
fi;
done;
fi;
done;
endef
utilities-build:
$(GOGET) github.com/alvaroloes/enumer
$(GOGET) github.com/rakyll/statik
utilities-ci:
$(GOCMD_NO_MOD) get -u github.com/golangci/golangci-lint/cmd/golangci-lint
$(GOGET) github.com/mattn/goveralls
utilities: utilities-build utilities-ci
build-server:
$(GOBUILD) -ldflags "-X go-home.io/x/server/utils.Version=${VERSION} \
-X go-home.io/x/server/utils.Arch=${GOARCH}" -o $(BIN_NAME)
build: build-plugins build-server
run-only-server:
$(BIN_NAME) -c provider:fs -c location:${CURDIR}/configs -p ${CURDIR}/bin/plugins
run-server: build run-only-server
run-only-worker:
$(BIN_NAME) -c provider:fs -c location:${CURDIR}/configs -p ${CURDIR}/bin/plugins -w
run-worker: build run-only-worker
test:
@set -e
$(GOCMD) test -failfast --covermode=count -coverprofile=$(BIN_FOLDER)/cover.out.tmp ./...
@cat $(BIN_FOLDER)/cover.out.tmp | grep -v "fake_" | grep -v "_enumer" | \
grep -v "mocks" | grep -v "public" | grep -v "statik" | \
grep -v "cmd/" | grep -v "errors.go" > $(BIN_FOLDER)/cover.out
@rm -f $(BIN_FOLDER)/cover.out.tmp
test-local: test
$(GOCMD) tool cover --html=$(BIN_FOLDER)/cover.out
.ONESHELL:
SHELL = /bin/sh
build-plugins:
$(build_plugins_task)
.ONESHELL:
SHELL = /bin/sh
dep:
$(restore_dependencies)
.ONESHELL:
SHELL = /bin/sh
lint:
$(lint_all)
.ONESHELL:
SHELL = /bin/sh
vendor-cleanup:
$(lint_cleanup)
.ONESHELL:
SHELL = /bin/sh
dep-ensure:
set -e
$(validate_dependencies)
cd ${CURDIR}
$(GOCMD) run cmd/mod/mod.go ${CURDIR} $(PLUGINS_LOCATION)
.ONESHELL:
SHELL = /bin/sh
dep-shared-update:
set -e
$(update_shared_package_dependency)
cd ${CURDIR}
@$(MAKE) dep-ensure
.ONESHELL:
SHELL = /bin/sh
generate:
$(go_generate)
.ONESHELL:
SHELL = /bin/sh
todo:
$(extract_comments)
generate-local: dep generate vendor-cleanup
git: vendor-cleanup dep-ensure dep generate lint test-local
$(lint_cleanup)