forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
184 lines (169 loc) · 4.42 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
# 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
OUT_PKG_DIR = Godeps/_workspace/pkg
export GOFLAGS
export TESTFLAGS
# 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)/go/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/kubelet GOFLAGS=-v
all build:
hack/build-go.sh $(WHAT)
.PHONY: all build
# Build and 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 check
# make check WHAT=pkg/build GOFLAGS=-v
check:
TEST_KUBE=1 hack/test-go.sh $(WHAT) $(TESTS) $(TESTFLAGS)
.PHONY: check
# Verify code is properly organized.
#
# Example:
# make verify
ifeq ($(SKIP_BUILD), true)
verify:
else
verify: build
endif
hack/verify-upstream-commits.sh
hack/verify-gofmt.sh
hack/verify-govet.sh
hack/verify-generated-deep-copies.sh
hack/verify-generated-conversions.sh
hack/verify-generated-completions.sh
hack/verify-generated-docs.sh
hack/verify-generated-swagger-spec.sh
hack/verify-api-descriptions.sh
.PHONY: verify
# check and verify can't run concurently because of strange concurrent build issues.
check-verify:
# delegate to another make process that runs serially against the check and verify targets
$(MAKE) -j1 check verify
.PHONY: check-verify
# Install travis dependencies
#
# Args:
# TEST_ASSETS: Instead of running tests, test assets only.
ifeq ($(TEST_ASSETS), true)
install-travis:
hack/install-assets.sh
else
install-travis:
hack/install-etcd.sh
hack/install-tools.sh
endif
.PHONY: install-travis
# Run unit and integration tests that don't require Docker.
#
# Args:
# GOFLAGS: Extra flags to pass to 'go' when building.
# TESTFLAGS: Extra flags that should only be passed to hack/test-go.sh
# TEST_ASSETS: Instead of running tests, test assets only.
#
# Example:
# make check-test
check-test: export KUBE_COVER= -cover -covermode=atomic
check-test: export KUBE_RACE= -race
ifeq ($(TEST_ASSETS), true)
check-test:
hack/test-assets.sh
else
check-test:
check-verify
hack/test-cmd.sh
KUBE_RACE=" " hack/test-integration.sh
endif
.PHONY: check-test
# Build and run the complete test-suite.
#
# Args:
# 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
# make test GOFLAGS=-v
test: export KUBE_COVER= -cover -covermode=atomic
test: export KUBE_RACE= -race
ifeq ($(SKIP_BUILD), true)
test: check-verify test-int-plus
else
test: build check-verify test-int-plus
endif
.PHONY: test
# Split out of `test`. This allows `make -j --output-sync=recurse test` to parallelize as expected
test-int-plus: export KUBE_COVER= -cover -covermode=atomic
test-int-plus: export KUBE_RACE= -race
ifeq ($(SKIP_BUILD), true)
test-int-plus:
else
test-int-plus: build
endif
test-int-plus:
hack/test-cmd.sh
hack/test-tools.sh
KUBE_RACE=" " hack/test-integration-docker.sh
hack/test-end-to-end-docker.sh
ifeq ($(EXTENDED),true)
hack/test-extended.sh
endif
.PHONY: test-int-plus
# Run All-in-one OpenShift server.
#
# Example:
# make run
OS_OUTPUT_BINPATH=$(shell bash -c 'source hack/common.sh; echo $${OS_OUTPUT_BINPATH}')
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) $(OUT_PKG_DIR)
.PHONY: clean
# Build an official release of OpenShift, including the official images.
#
# Example:
# make release
release: clean
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