forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
331 lines (297 loc) · 8.4 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
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
# Old-skool build tools.
#
# Targets (see each target for more information):
# all: Build code.
# build: Build code.
# check: Run verify, build, unit tests and cmd tests.
# test: Run all tests.
# run: Run all-in-one server
# clean: Clean up.
OUT_DIR = _output
OS_OUTPUT_GOPATH ?= 1
export GOFLAGS
export TESTFLAGS
# If set to 1, create an isolated GOPATH inside _output using symlinks to avoid
# other packages being accidentally included. Defaults to on.
export OS_OUTPUT_GOPATH
# May be used to set additional arguments passed to the image build commands for
# mounting secrets specific to a build environment.
export OS_BUILD_IMAGE_ARGS
# Tests run using `make` are most often run by the CI system, so we are OK to
# assume the user wants jUnit output and will turn it off if they don't.
JUNIT_REPORT ?= true
# Build code.
#
# Args:
# WHAT: Directory names to build. If any of these directories has a 'main'
# package, the build will produce executable files under $(OUT_DIR)/local/bin.
# If not specified, "everything" will be built.
# GOFLAGS: Extra flags to pass to 'go' when building.
# GOGCFLAGS: Additional go compile flags passed to 'go' when building.
# TESTFLAGS: Extra flags that should only be passed to hack/test-go.sh
#
# Example:
# make
# make all
# make all WHAT=cmd/oc GOFLAGS=-v
# make all GOGCFLAGS="-N -l"
all build:
hack/build-go.sh $(WHAT) $(GOFLAGS)
.PHONY: all build
# Build the test binaries.
#
# Example:
# make build-tests
build-tests: build-extended-test build-integration-test build-router-e2e-test
.PHONY: build-tests
build-extended-test:
hack/build-go.sh test/extended/extended.test
.PHONY: build-extended-test
build-integration-test: build-router-e2e-test
hack/build-go.sh test/integration/integration.test
.PHONY: build-integration-test
build-router-e2e-test:
hack/build-go.sh test/end-to-end/end-to-end.test
.PHONY: build-router-e2e-test
# Run core verification and all self contained tests.
#
# Example:
# make check
check: | build verify
$(MAKE) test-unit test-cmd -o build -o verify
.PHONY: check
# Verify code conventions are properly setup.
#
# TODO add verifying listers - we can't do it yet because there's an issue with the generated
# expansion file being incorrect.
#
# Example:
# make verify
verify: build
# build-tests task has been disabled until we can determine why memory usage is so high
{ \
hack/verify-gofmt.sh ||r=1;\
hack/verify-govet.sh ||r=1;\
hack/verify-imports.sh ||r=1;\
hack/verify-generated-bindata.sh ||r=1;\
hack/verify-generated-conversions.sh ||r=1;\
hack/verify-generated-clientsets.sh ||r=1;\
hack/verify-generated-deep-copies.sh ||r=1;\
hack/verify-generated-defaulters.sh ||r=1;\
hack/verify-generated-listers.sh ||r=1;\
hack/verify-generated-informers.sh ||r=1;\
hack/verify-generated-openapi.sh ||r=1;\
hack/verify-generated-completions.sh ||r=1;\
hack/verify-generated-docs.sh ||r=1;\
hack/verify-cli-conventions.sh ||r=1;\
hack/verify-generated-json-codecs.sh ||r=1; \
hack/verify-generated-swagger-spec.sh ||r=1;\
exit $$r ;\
}
.PHONY: verify
# Verify commit comments.
#
# Example:
# make verify-commits
verify-commits:
hack/verify-upstream-commits.sh
.PHONY: verify-commits
# Update all generated artifacts.
#
# Example:
# make update
update:
hack/update-generated-bindata.sh
hack/update-generated-conversions.sh
hack/update-generated-clientsets.sh
hack/update-generated-deep-copies.sh
hack/update-generated-defaulters.sh
hack/update-generated-listers.sh
hack/update-generated-informers.sh
hack/update-generated-openapi.sh
$(MAKE) build
hack/update-generated-completions.sh
hack/update-generated-docs.sh
.PHONY: update
# Update all generated artifacts for the API
#
# Example:
# make update-api
update-api:
hack/update-generated-conversions.sh
hack/update-generated-defaulters.sh
hack/update-generated-deep-copies.sh
hack/update-generated-openapi.sh
$(MAKE) build
hack/update-generated-swagger-spec.sh
.PHONY: update-api
# Update vendored dependencies
#
# Example:
# make update-deps
update-deps:
hack/update-deps.sh
.PHONY: update-deps
# Update external examples
#
# Example:
# make update-examples
update-examples:
hack/update-external-examples.sh
hack/update-generated-bindata.sh
.PHONY: update-examples
# Build and run the complete test-suite.
#
# Example:
# make test
test: test-tools test-integration test-end-to-end
.PHONY: test
# Run unit tests.
#
# Args:
# WHAT: Directory names to test. All *_test.go files under these
# directories will be run. If not specified, "everything" will be tested.
# TESTS: Same as WHAT.
# GOFLAGS: Extra flags to pass to 'go' when building.
# TESTFLAGS: Extra flags that should only be passed to hack/test-go.sh
#
# Example:
# make test-unit
# make test-unit WHAT=pkg/build TESTFLAGS=-v
test-unit:
TEST_KUBE=true GOTEST_FLAGS="$(TESTFLAGS)" hack/test-go.sh $(WHAT) $(TESTS)
.PHONY: test-unit
# Run integration tests. Compiles its own tests, cannot be run
# in parallel with any other go compilation.
#
# Args:
# WHAT: Regular expression that matches the names of all of the
# integration tests to run. If not specified, "everything" will be tested.
#
# Example:
# make test-integration
# make test-integration WHAT=TestProjectRequestError
test-integration:
hack/test-integration.sh $(WHAT)
.PHONY: test-integration
# Run command tests. Uses whatever binaries are currently built.
#
# Example:
# make test-cmd
test-cmd: build
hack/test-util.sh
hack/test-cmd.sh
.PHONY: test-cmd
# Run end to end tests. Uses whatever binaries are currently built.
#
# Example:
# make test-end-to-end
# TODO restore COVERAGE_SPEC=' ' DETECT_RACES='false' TIMEOUT='10m' hack/test-go.sh ./test/end-to-end
test-end-to-end:
hack/test-end-to-end.sh
.PHONY: test-end-to-end
# Run tools tests.
#
# Example:
# make test-tools
test-tools:
hack/test-tools.sh
.PHONY: test-tools
# Run extended tests.
#
# Args:
# SUITE: Which Bash entrypoint under test/extended/ to use. Don't include the
# ending `.sh`. Ex: `core`.
# FOCUS: Literal string to pass to `--ginkgo.focus=`
# The FOCUS env variable is handled by the respective suite scripts.
#
# Example:
# make test-extended SUITE=core
# make test-extended SUITE=conformance FOCUS=pods
#
SUITE ?= conformance
test-extended:
test/extended/$(SUITE).sh
.PHONY: test-extended
# Run All-in-one OpenShift server.
#
# Example:
# make run
run: export OS_OUTPUT_BINPATH=$(shell bash -c 'source hack/lib/init.sh; echo $${OS_OUTPUT_BINPATH}')
run: export PLATFORM=$(shell bash -c 'source hack/lib/init.sh; os::build::host_platform')
run: build
$(OS_OUTPUT_BINPATH)/$(PLATFORM)/openshift start
.PHONY: run
# Remove all build artifacts.
#
# Example:
# make clean
clean:
rm -rf $(OUT_DIR)
.PHONY: clean
# Build an official release of OpenShift for all platforms and the images that depend on it.
#
# Example:
# make release
official-release: build-images build-cross
.PHONY: official-release
# Build a release of OpenShift for linux/amd64 and the images that depend on it.
#
# Example:
# make release
release: build-images
.PHONY: release
# Build the cross compiled release binaries
#
# Example:
# make build-cross
build-cross:
hack/build-cross.sh
.PHONY: build-cross
# Install travis dependencies
#
# Example:
# make install-travis
install-travis:
hack/install-tools.sh
.PHONY: install-travis
# Build RPMs only for the Linux AMD64 target
#
# Args:
#
# Example:
# make build-rpms
build-rpms:
OS_ONLY_BUILD_PLATFORMS='linux/amd64' hack/build-rpms.sh
.PHONY: build-rpms
# Build RPMs for all architectures
#
# Args:
#
# Example:
# make build-rpms-redistributable
build-rpms-redistributable:
hack/build-rpms.sh
.PHONY: build-rpms-redistributable
# Build images from the official RPMs
#
# Args:
#
# Example:
# make build-images
build-images: build-rpms
hack/build-images.sh
.PHONY: build-images
# Vendor the Origin Web Console
#
# Args:
# GIT_REF: specifies which branch / tag of the web console to vendor. If set, then any untracked/uncommitted changes
# will cause the script to exit with an error. If not set then the current working state of the web console
# directory will be used.
# CONSOLE_REPO_PATH: specifies a directory path to look for the web console repo. If not set it is assumed to be
# a sibling to this repository.
# Example:
# make vendor-console
vendor-console:
GIT_REF=$(GIT_REF) CONSOLE_REPO_PATH=$(CONSOLE_REPO_PATH) hack/vendor-console.sh
.PHONY: vendor-console