16
16
# !!! Open PRs only against the prometheus/prometheus/Makefile.common repository!
17
17
18
18
# Example usage :
19
- # Create the main Makefile in the root project directory.
19
+ # Create the main Makefile in the root project directory.
20
20
# include Makefile.common
21
21
# customTarget:
22
22
# @echo ">> Running customTarget"
@@ -28,18 +28,53 @@ unexport GOBIN
28
28
GO ?= go
29
29
GOFMT ?= $(GO)fmt
30
30
FIRST_GOPATH := $(firstword $(subst :, ,$(shell $(GO) env GOPATH)))
31
+ GOOPTS ?=
32
+
33
+ GO_VERSION ?= $(shell $(GO) version)
34
+ GO_VERSION_NUMBER ?= $(word 3, $(GO_VERSION))
35
+ PRE_GO_111 ?= $(shell echo $(GO_VERSION_NUMBER) | grep -E 'go1\.(10|[0-9])\.')
36
+
37
+ unexport GOVENDOR
38
+ ifeq (, $(PRE_GO_111))
39
+ ifneq (,$(wildcard go.mod))
40
+ # Enforce Go modules support just in case the directory is inside GOPATH (and for Travis CI).
41
+ GO111MODULE := on
42
+
43
+ ifneq (,$(wildcard vendor))
44
+ # Always use the local vendor/ directory to satisfy the dependencies.
45
+ GOOPTS := $(GOOPTS) -mod=vendor
46
+ endif
47
+ endif
48
+ else
49
+ ifneq (,$(wildcard go.mod))
50
+ ifneq (,$(wildcard vendor))
51
+ $(warning This repository requires Go >= 1.11 because of Go modules)
52
+ $(warning Some recipes may not work as expected as the current Go runtime is '$(GO_VERSION_NUMBER)')
53
+ endif
54
+ else
55
+ # This repository isn't using Go modules (yet).
56
+ GOVENDOR := $(FIRST_GOPATH)/bin/govendor
57
+ endif
58
+
59
+ unexport GO111MODULE
60
+ endif
31
61
PROMU := $(FIRST_GOPATH)/bin/promu
32
62
STATICCHECK := $(FIRST_GOPATH)/bin/staticcheck
33
- GOVENDOR := $(FIRST_GOPATH)/bin/govendor
34
63
pkgs = ./...
35
64
65
+ GO_VERSION ?= $(shell $(GO) version)
66
+ GO_BUILD_PLATFORM ?= $(subst /,-,$(lastword $(GO_VERSION)))
67
+
68
+ PROMU_VERSION ?= 0.2.0
69
+ PROMU_URL := https://github.com/prometheus/promu/releases/download/v$(PROMU_VERSION)/promu-$(PROMU_VERSION).$(GO_BUILD_PLATFORM).tar.gz
70
+
36
71
PREFIX ?= $(shell pwd)
37
72
BIN_DIR ?= $(shell pwd)
38
73
DOCKER_IMAGE_TAG ?= $(subst /,-,$(shell git rev-parse --abbrev-ref HEAD))
39
74
DOCKER_REPO ?= prom
40
75
41
76
.PHONY: all
42
- all: style staticcheck unused build test
77
+ all: precheck style staticcheck unused build test
43
78
44
79
# This rule is used to forward a target like "build" to "common-build". This
45
80
# allows a new "build" target to be defined in a Makefile which includes this
@@ -70,37 +105,54 @@ common-check_license:
70
105
.PHONY: common-test-short
71
106
common-test-short:
72
107
@echo ">> running short tests"
73
- $( GO) test -short $(pkgs)
108
+ GO111MODULE=$(GO111MODULE) $( GO) test -short $(GOOPTS) $(pkgs)
74
109
75
110
.PHONY: common-test
76
111
common-test:
77
112
@echo ">> running all tests"
78
- $( GO) test -race $(pkgs)
113
+ GO111MODULE=$(GO111MODULE) $( GO) test -race $(GOOPTS) $(pkgs)
79
114
80
115
.PHONY: common-format
81
116
common-format:
82
117
@echo ">> formatting code"
83
- $( GO) fmt $(pkgs)
118
+ GO111MODULE=$(GO111MODULE) $( GO) fmt $(GOOPTS) $(pkgs)
84
119
85
120
.PHONY: common-vet
86
121
common-vet:
87
122
@echo ">> vetting code"
88
- $( GO) vet $(pkgs)
123
+ GO111MODULE=$(GO111MODULE) $( GO) vet $(GOOPTS) $(pkgs)
89
124
90
125
.PHONY: common-staticcheck
91
126
common-staticcheck: $(STATICCHECK)
92
127
@echo ">> running staticcheck"
128
+ ifdef GO111MODULE
129
+ GO111MODULE=$(GO111MODULE) $(STATICCHECK) -ignore "$(STATICCHECK_IGNORE)" -checks "SA*" $(pkgs)
130
+ else
93
131
$(STATICCHECK) -ignore "$(STATICCHECK_IGNORE)" $(pkgs)
132
+ endif
94
133
95
134
.PHONY: common-unused
96
135
common-unused: $(GOVENDOR)
136
+ ifdef GOVENDOR
97
137
@echo ">> running check for unused packages"
98
138
@$(GOVENDOR) list +unused | grep . && exit 1 || echo 'No unused packages'
139
+ else
140
+ ifdef GO111MODULE
141
+ @echo ">> running check for unused/missing packages in go.mod"
142
+ GO111MODULE=$(GO111MODULE) $(GO) mod tidy
143
+ @git diff --exit-code -- go.sum go.mod
144
+ ifneq (,$(wildcard vendor))
145
+ @echo ">> running check for unused packages in vendor/"
146
+ GO111MODULE=$(GO111MODULE) $(GO) mod vendor
147
+ @git diff --exit-code -- go.sum go.mod vendor/
148
+ endif
149
+ endif
150
+ endif
99
151
100
152
.PHONY: common-build
101
153
common-build: promu
102
154
@echo ">> building binaries"
103
- $(PROMU) build --prefix $(PREFIX)
155
+ GO111MODULE=$(GO111MODULE) $(PROMU) build --prefix $(PREFIX)
104
156
105
157
.PHONY: common-tarball
106
158
common-tarball: promu
@@ -120,13 +172,52 @@ common-docker-tag-latest:
120
172
docker tag "$(DOCKER_REPO)/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)" "$(DOCKER_REPO)/$(DOCKER_IMAGE_NAME):latest"
121
173
122
174
.PHONY: promu
123
- promu:
124
- GOOS= GOARCH= $(GO) get -u github.com/prometheus/promu
175
+ promu: $(PROMU)
176
+
177
+ $(PROMU):
178
+ curl -s -L $(PROMU_URL) | tar -xvz -C /tmp
179
+ mkdir -v -p $(FIRST_GOPATH)/bin
180
+ cp -v /tmp/promu-$(PROMU_VERSION).$(GO_BUILD_PLATFORM)/promu $(PROMU)
181
+
182
+ .PHONY: proto
183
+ proto:
184
+ @echo ">> generating code from proto files"
185
+ @./scripts/genproto.sh
125
186
126
187
.PHONY: $(STATICCHECK)
127
188
$(STATICCHECK):
128
- GOOS= GOARCH= $(GO) get -u honnef.co/go/tools/cmd/staticcheck
129
-
189
+ ifdef GO111MODULE
190
+ # Get staticcheck from a temporary directory to avoid modifying the local go.{mod,sum}.
191
+ # See https://github.com/golang/go/issues/27643.
192
+ # For now, we are using the next branch of staticcheck because master isn't compatible yet with Go modules.
193
+ tmpModule=$$(mktemp -d 2>&1) && \
194
+ mkdir -p $${tmpModule}/staticcheck && \
195
+ cd "$${tmpModule}"/staticcheck && \
196
+ GO111MODULE=on $(GO) mod init example.com/staticcheck && \
197
+ GO111MODULE=on GOOS= GOARCH= $(GO) get -u honnef.co/go/tools/cmd/staticcheck@next && \
198
+ rm -rf $${tmpModule};
199
+ else
200
+ GOOS= GOARCH= GO111MODULE=off $(GO) get -u honnef.co/go/tools/cmd/staticcheck
201
+ endif
202
+
203
+ ifdef GOVENDOR
130
204
.PHONY: $(GOVENDOR)
131
205
$(GOVENDOR):
132
206
GOOS= GOARCH= $(GO) get -u github.com/kardianos/govendor
207
+ endif
208
+
209
+ .PHONY: precheck
210
+ precheck::
211
+
212
+ define PRECHECK_COMMAND_template =
213
+ precheck:: $(1)_precheck
214
+
215
+
216
+ PRECHECK_COMMAND_$(1) ?= $(1) $$(strip $$(PRECHECK_OPTIONS_$(1)))
217
+ .PHONE: $(1)_precheck
218
+ $(1)_precheck:
219
+ @if ! $$(PRECHECK_COMMAND_$(1)) 1>/dev/null 2>&1; then \
220
+ echo "Execution of '$$(PRECHECK_COMMAND_$(1))' command failed. Is $(1) installed?"; \
221
+ exit 1; \
222
+ fi
223
+ endef
0 commit comments