forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
291 lines (264 loc) · 7.7 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
# Old-skool build tools.
#
# Targets (see each target for more information):
# all: Build code.
# build: Build code.
# check: Run unit 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
# 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.
# TESTFLAGS: Extra flags that should only be passed to hack/test-go.sh
#
# Example:
# make
# make all
# make all WHAT=cmd/oc GOFLAGS=-v
all build:
hack/build-go.sh $(WHAT) $(GOFLAGS)
.PHONY: all build
# Build the test binaries.
#
# Example:
# make build-tests
build-tests:
hack/build-go.sh test/extended/extended.test
hack/build-go.sh test/integration/integration.test -tags='integration docker'
.PHONY: build-tests
# 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.
#
# Example:
# make verify
verify: build
# build-tests is disabled until we can determine why memory usage is so high
hack/verify-gofmt.sh
hack/verify-govet.sh
hack/verify-generated-bootstrap-bindata.sh
hack/verify-generated-deep-copies.sh
hack/verify-generated-conversions.sh
hack/verify-generated-clientsets.sh
hack/verify-generated-completions.sh
hack/verify-generated-docs.sh
hack/verify-cli-conventions.sh
PROTO_OPTIONAL=1 hack/verify-generated-protobuf.sh
hack/verify-generated-swagger-descriptions.sh
hack/verify-generated-swagger-spec.sh
.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: build
hack/update-generated-bootstrap-bindata.sh
hack/update-generated-deep-copies.sh
hack/update-generated-conversions.sh
hack/update-generated-clientsets.sh
hack/update-generated-completions.sh
hack/update-generated-docs.sh
PROTO_OPTIONAL=1 hack/update-generated-protobuf.sh
hack/update-generated-swagger-descriptions.sh
hack/update-generated-swagger-spec.sh
.PHONY: update
# 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.
#
# Example:
# make test-integration
test-integration:
KUBE_COVER=" " KUBE_RACE=" " hack/test-integration.sh
.PHONY: test-integration
# Run command tests. Uses whatever binaries are currently built.
#
# Example:
# make test-cmd
test-cmd: build
hack/test-cmd.sh
.PHONY: test-cmd
# Run end to end tests. Uses whatever binaries are currently built.
#
# Example:
# make test-end-to-end
test-end-to-end: build
hack/env hack/verify-generated-protobuf.sh # Test the protobuf serializations when we know Docker is available
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 assets tests.
#
# Example:
# make test-assets
test-assets:
ifeq ($(TEST_ASSETS),true)
hack/test-assets.sh
endif
.PHONY: test-assets
# Build and run the complete test-suite.
#
# Example:
# make test
test: check
$(MAKE) test-tools test-integration test-assets -o build
$(MAKE) test-end-to-end -o build
.PHONY: test
# Run All-in-one OpenShift server.
#
# Example:
# make run
run: export OS_OUTPUT_BINPATH=$(shell bash -c 'source hack/common.sh; echo $${OS_OUTPUT_BINPATH}')
run: export PLATFORM=$(shell bash -c 'source hack/common.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 a release of OpenShift for linux/amd64 and the images that depend on it.
#
# Example:
# make release
release: clean
OS_ONLY_BUILD_PLATFORMS="linux/amd64" hack/build-release.sh
hack/build-images.sh
hack/extract-release.sh
.PHONY: release
# Build only the release binaries for OpenShift
#
# Example:
# make release-binaries
release-binaries: clean
hack/build-release.sh
hack/extract-release.sh
.PHONY: release-binaries
# Release the integrated components for OpenShift, origin, logging, and metrics.
# The current tag in the Origin release (the tag that points to HEAD) is used to
# clone and build each component. Components must have a hack/release.sh script
# which must accept env var OS_TAG as the tag to build. Each component should push
# its own images. See hack/release.sh and hack/push-release.sh for an example of
# the appropriate behavior.
#
# Prerequisites:
# * you must be logged into the remote registry with the appropriate
# credentials to push.
# * all repositories must have a Git tag equal to the current repositories tag of
# HEAD
#
# TODO: consider making hack/release.sh be a make target (make official-release).
#
# Example:
# make release-components
release-components: clean
hack/release-components.sh
.PHONY: release-components
# Build the cross compiled release binaries
#
# Example:
# make build-cross
build-cross: clean
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:
# BUILD_TESTS: whether or not to build a test RPM, off by default
#
# Example:
# make build-rpms
build-rpms:
BUILD_TESTS=$(BUILD_TESTS) OS_ONLY_BUILD_PLATFORMS='linux/amd64' hack/build-rpm-release.sh
.PHONY: build-rpms
# Build RPMs for all architectures
#
# Args:
# BUILD_TESTS: whether or not to build a test RPM, off by default
#
# Example:
# make build-rpms-redistributable
build-rpms-redistributable:
BUILD_TESTS=$(BUILD_TESTS) hack/build-rpm-release.sh
.PHONY: build-rpms-redistributable
# Build a release of OpenShift using tito for linux/amd64 and the images that depend on it.
#
# Args:
# BUILD_TESTS: whether or not to build a test RPM, off by default
#
# Example:
# make release-rpms BUILD_TESTS=1
release-rpms: clean build-rpms
hack/build-images.sh
hack/extract-release.sh
.PHONY: release
# 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