generated from octomation/go-module
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
279 lines (222 loc) · 5.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
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
# sourced by https://github.com/octomation/makefiles
.DEFAULT_GOAL = test-with-coverage
GIT_HOOKS = post-merge pre-commit pre-push
GO_VERSIONS = 1.11 1.12 1.13 1.14 1.15
GO111MODULE = on
SHELL = /bin/bash -euo pipefail
AT := @
OS := $(shell uname -s | tr '[:upper:]' '[:lower:]')
ARCH := $(shell uname -m | tr '[:upper:]' '[:lower:]')
SHELL ?= /bin/bash -euo pipefail
verbose:
$(eval AT :=)
@echo > /dev/null
.PHONY: verbose
todo:
@grep \
--exclude=Makefile \
--exclude-dir={bin,components,node_modules,vendor} \
--color \
--text \
-nRo -E ' TODO:.*|SkipNow' . || true
.PHONY: todo
rmdir:
$(AT) for dir in `git ls-files --others --exclude-standard --directory`; do \
find $${dir%%/} -depth -type d -empty | xargs rmdir; \
done
.PHONY: rmdir
GO111MODULE ?= on
GOFLAGS ?= -mod=
GOPRIVATE ?= go.octolab.net
GOPROXY ?= direct
LOCAL ?= $(MODULE)
MODULE ?= `GO111MODULE=on go list -m $(GOFLAGS)`
PACKAGES ?= `GO111MODULE=on go list $(GOFLAGS) ./...`
PATHS ?= $(shell echo $(PACKAGES) | sed -e "s|$(MODULE)/||g" | sed -e "s|$(MODULE)|$(PWD)/*.go|g")
TIMEOUT ?= 1s
ifeq (, $(PACKAGES))
PACKAGES = $(MODULE)
endif
ifeq (, $(PATHS))
PATHS = .
endif
export GO111MODULE := $(GO111MODULE)
export GOFLAGS := $(GOFLAGS)
export GOPRIVATE := $(GOPRIVATE)
export GOPROXY := $(GOPROXY)
go-env:
@echo "GO111MODULE: `go env GO111MODULE`"
@echo "GOFLAGS: $(strip `go env GOFLAGS`)"
@echo "GOPRIVATE: $(strip `go env GOPRIVATE`)"
@echo "GOPROXY: $(strip `go env GOPROXY`)"
@echo "LOCAL: $(LOCAL)"
@echo "MODULE: $(MODULE)"
@echo "PACKAGES: $(PACKAGES)"
@echo "PATHS: $(strip $(PATHS))"
@echo "TIMEOUT: $(TIMEOUT)"
.PHONY: go-env
export GOBIN := $(PWD)/bin/$(OS)/$(ARCH)
deps-check:
@go mod verify
@if command -v egg > /dev/null; then \
egg deps check license; \
egg deps check version; \
fi
.PHONY: deps-check
deps-clean:
@go clean -modcache
.PHONY: deps-clean
deps-fetch:
@go mod download
@if [[ "`go env GOFLAGS`" =~ -mod=vendor ]]; then go mod vendor; fi
.PHONY: deps-fetch
deps-tidy:
@go mod tidy
@if [[ "`go env GOFLAGS`" =~ -mod=vendor ]]; then go mod vendor; fi
.PHONY: deps-tidy
deps-update: selector = '{{if not (or .Main .Indirect)}}{{.Path}}{{end}}'
deps-update:
$(AT) if command -v egg > /dev/null; then \
packages="`egg deps list | tr ' ' '\n' | sed -e 's/$$/@latest/'`"; \
else \
packages="`go list -f $(selector) -m -mod=readonly all | sed -e 's/$$/@latest/'`"; \
fi; \
if [[ "`go version`" == *1.1[1-3]* ]]; then \
go get -d -mod= $$packages; \
else \
go get -d $$packages; \
fi; \
if [[ "`go env GOFLAGS`" =~ -mod=vendor ]]; then go mod vendor; fi
.PHONY: deps-update
go-fmt:
@if command -v goimports > /dev/null; then \
goimports -local $(LOCAL) -ungroup -w $(PATHS); \
else \
gofmt -s -w $(PATHS); \
fi
.PHONY: go-fmt
go-generate:
@go generate $(PACKAGES)
.PHONY: go-generate
lint:
@golangci-lint run ./...
@looppointer ./...
.PHONY: lint
GODOC_HOST ?= localhost:6060
docs:
@(sleep 2 && open http://$(GODOC_HOST)/pkg/$(LOCAL)/) &
@godoc -http=$(GODOC_HOST)
.PHONY: docs
test:
@go test -race -timeout $(TIMEOUT) $(PACKAGES)
.PHONY: test
test-clean:
@go clean -testcache
.PHONY: test-clean
test-quick: GOTAGS = integration,tools
test-quick:
@go test -run ^Fake$$ -tags $(GOTAGS) ./... | { grep -v 'no tests to run' || true; }
@go test -timeout $(TIMEOUT) $(PACKAGES)
.PHONY: test-quick
test-verbose:
@go test -race -timeout $(TIMEOUT) -v $(PACKAGES)
.PHONY: test-verbose
test-with-coverage:
@go test \
-cover \
-covermode atomic \
-coverprofile c.out \
-race \
-timeout $(TIMEOUT) \
$(PACKAGES)
.PHONY: test-with-coverage
test-with-coverage-report: test-with-coverage
@go tool cover -html c.out
.PHONY: test-with-coverage-report
test-integration: GOTAGS = integration
test-integration:
@go test \
-cover \
-covermode atomic \
-coverprofile integration.out \
-race \
-tags $(GOTAGS) \
./...
.PHONY: test-integration
test-integration-quick: GOTAGS = integration
test-integration-quick:
@go test -tags $(GOTAGS) ./...
.PHONY: test-integration-quick
test-integration-report: test-integration
@go tool cover -html integration.out
.PHONY: test-integration-report
TOOLFLAGS ?= -mod=
tools-env:
@echo "GOBIN: `go env GOBIN`"
@echo "TOOLFLAGS: $(TOOLFLAGS)"
.PHONY: tools-env
toolset: GOTAGS = tools
toolset:
$(AT) ( \
GOFLAGS=$(TOOLFLAGS); \
cd tools; \
go mod tidy; \
if [[ "`go env GOFLAGS`" =~ -mod=vendor ]]; then go mod vendor; fi; \
go generate -tags $(GOTAGS) tools.go; \
)
.PHONY: toolset
ifdef GIT_HOOKS
hooks: unhook
$(AT) for hook in $(GIT_HOOKS); do cp githooks/$$hook .git/hooks/; done
.PHONY: hooks
unhook:
@ls .git/hooks | grep -v .sample | sed 's|.*|.git/hooks/&|' | xargs rm -f || true
.PHONY: unhook
define hook_tpl
$(1):
@githooks/$(1)
.PHONY: $(1)
endef
render_hook_tpl = $(eval $(call hook_tpl,$(hook)))
$(foreach hook,$(GIT_HOOKS),$(render_hook_tpl))
endif
git-check:
$(AT) git diff --exit-code >/dev/null
$(AT) git diff --cached --exit-code >/dev/null
$(AT) ! git ls-files --others --exclude-standard | grep -q ^
.PHONY: git-check
ifdef GO_VERSIONS
define go_tpl
go$(1):
@docker run \
--rm -it \
-v $(PWD):/src \
-w /src \
golang:$(1) bash
.PHONY: go$(1)
endef
render_go_tpl = $(eval $(call go_tpl,$(version)))
$(foreach version,$(GO_VERSIONS),$(render_go_tpl))
endif
export PATH := $(GOBIN):$(PATH)
init: deps test lint hooks
@git config core.autocrlf input
.PHONY: init
clean: deps-clean test-clean
.PHONY: clean
deps: deps-fetch toolset
.PHONY: deps
env: go-env tools-env
env:
@echo "PATH: $(PATH)"
.PHONY: env
format: go-fmt
.PHONY: format
generate: go-generate format
.PHONY: generate
refresh: deps-tidy update deps generate test
.PHONY: refresh
update: deps-update
.PHONY: update
verify: deps-check generate test lint git-check
.PHONY: verify