forked from cri-o/cri-o
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
371 lines (308 loc) · 11.6 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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
include Makefile.inc
export GO111MODULE=off
GO ?= go
EPOCH_TEST_COMMIT ?= 1cc5a27
PROJECT := github.com/cri-o/cri-o
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
GIT_BRANCH_CLEAN := $(shell echo $(GIT_BRANCH) | sed -e "s/[^[:alnum:]]/-/g")
CRIO_IMAGE := crio_dev$(if $(GIT_BRANCH_CLEAN),:$(GIT_BRANCH_CLEAN))
CRIO_INSTANCE := crio_dev
PREFIX ?= ${DESTDIR}/usr/local
BINDIR ?= ${PREFIX}/bin
LIBEXECDIR ?= ${PREFIX}/libexec
MANDIR ?= ${PREFIX}/share/man
ETCDIR ?= ${DESTDIR}/etc
ETCDIR_CRIO ?= ${ETCDIR}/crio
DATAROOTDIR ?= ${PREFIX}/share/containers
BUILDTAGS ?= containers_image_ostree_stub \
$(shell hack/apparmor_tag.sh) \
$(shell hack/btrfs_installed_tag.sh) \
$(shell hack/btrfs_tag.sh) \
$(shell hack/libdm_installed.sh) \
$(shell hack/libdm_no_deferred_remove_tag.sh) \
$(shell hack/openpgp_tag.sh) \
$(shell hack/seccomp_tag.sh) \
$(shell hack/selinux_tag.sh)
CRICTL_CONFIG_DIR=${DESTDIR}/etc
CONTAINER_RUNTIME ?= podman
BUILD_PATH := $(shell pwd)/build
BUILD_BIN_PATH := ${BUILD_PATH}/bin
COVERAGE_PATH := ${BUILD_PATH}/coverage
JUNIT_PATH := ${BUILD_PATH}/junit
TESTBIN_PATH := ${BUILD_PATH}/test
MOCK_PATH := ${PWD}/test/mocks
MOCKGEN_FLAGS := --build_flags='--tags=test $(BUILDTAGS)'
BASHINSTALLDIR=${PREFIX}/share/bash-completion/completions
OCIUMOUNTINSTALLDIR=$(PREFIX)/share/oci-umount/oci-umount.d
SELINUXOPT ?= $(shell selinuxenabled 2>/dev/null && echo -Z)
BUILD_INFO := $(shell date +%s)
GO_MD2MAN := ${BUILD_BIN_PATH}/go-md2man
GINKGO := ${BUILD_BIN_PATH}/ginkgo
MOCKGEN := ${BUILD_BIN_PATH}/mockgen
GIT_VALIDATION := ${BUILD_BIN_PATH}/git-validation
RELEASE_TOOL := ${BUILD_BIN_PATH}/release-tool
GOLANGCI_LINT := ${BUILD_BIN_PATH}/golangci-lint
NIX_IMAGE := crionix
CROSS_BUILD_TARGETS := \
bin/crio.cross.windows.amd64 \
bin/crio.cross.darwin.amd64 \
bin/crio.cross.linux.amd64
# If GOPATH not specified, use one in the local directory
ifeq ($(GOPATH),)
export GOPATH := $(CURDIR)/_output
unexport GOBIN
endif
GOPKGDIR := $(GOPATH)/src/$(PROJECT)
GOPKGBASEDIR := $(shell dirname "$(GOPKGDIR)")
# Update VPATH so make finds .gopathok
VPATH := $(VPATH):$(GOPATH)
SHRINKFLAGS := -s -w
BASE_LDFLAGS := ${SHRINKFLAGS} -X main.gitCommit=${GIT_COMMIT} -X main.buildInfo=${BUILD_INFO}
LDFLAGS := -ldflags '${BASE_LDFLAGS}'
all: binaries crio.conf docs
default: help
help:
@echo "Usage: make <target>"
@echo
@echo " * 'install' - Install binaries to system locations"
@echo " * 'binaries' - Build crio, conmon and pause"
@echo " * 'release-note' - Generate release note"
@echo " * 'integration' - Execute integration tests"
@echo " * 'clean' - Clean artifacts"
@echo " * 'lint' - Execute the source code linter"
# Dummy target for marking pattern rules phony
.explicit_phony:
.gopathok:
ifeq ("$(wildcard $(GOPKGDIR))","")
mkdir -p "$(GOPKGBASEDIR)"
ln -s "$(CURDIR)" "$(GOPKGDIR)"
endif
touch "$(GOPATH)/.gopathok"
lint: .gopathok ${GOLANGCI_LINT}
${GOLANGCI_LINT} run --build-tags="test $(BUILDTAGS)"
fmt: cfmt
cfmt:
find . '(' -name '*.h' -o -name '*.c' ')' ! -path './vendor/*' -exec clang-format -i {} \+
git diff --exit-code
bin/conmon: conmon/config.h
$(MAKE) -C conmon
bin/pause:
$(MAKE) -C pause
test/bin2img/bin2img: .gopathok $(wildcard test/bin2img/*.go)
$(GO) build $(LDFLAGS) -tags "$(BUILDTAGS)" -o $@ $(PROJECT)/test/bin2img
test/copyimg/copyimg: .gopathok $(wildcard test/copyimg/*.go)
$(GO) build $(LDFLAGS) -tags "$(BUILDTAGS)" -o $@ $(PROJECT)/test/copyimg
test/checkseccomp/checkseccomp: .gopathok $(wildcard test/checkseccomp/*.go)
$(GO) build $(LDFLAGS) -tags "$(BUILDTAGS)" -o $@ $(PROJECT)/test/checkseccomp
bin/crio: .gopathok
$(GO) build $(LDFLAGS) -tags "$(BUILDTAGS)" -o $@ $(PROJECT)/cmd/crio
build-static:
$(CONTAINER_RUNTIME) run --rm -it -v $(shell pwd):/cri-o $(NIX_IMAGE) sh -c \
"nix-build cri-o/nix --argstr revision $(COMMIT_NO) && \
mkdir -p cri-o/bin && \
cp result-*bin/bin/crio-* cri-o/bin && \
chown -R $(shell id -u):$(shell id -g) cri-o/bin"
nix-image:
time $(CONTAINER_RUNTIME) build -t $(NIX_IMAGE) \
--build-arg COMMIT=$(COMMIT_NO) -f Dockerfile-nix .
crio.conf: bin/crio
./bin/crio --config="" config --default > crio.conf
release-note: ${RELEASE_TOOL}
${RELEASE_TOOL} -n $(release)
conmon/config.h: cmd/crio-config/config.go oci/oci.go
$(GO) build $(LDFLAGS) -tags "$(BUILDTAGS)" -o bin/crio-config $(PROJECT)/cmd/crio-config
( cd conmon && $(CURDIR)/bin/crio-config )
clean:
ifneq ($(GOPATH),)
rm -f "$(GOPATH)/.gopathok"
endif
rm -rf _output
rm -f docs/*.5 docs/*.8
rm -fr test/testdata/redis-image
find . -name \*~ -delete
find . -name \#\* -delete
rm -f bin/crio
rm -f bin/crio.cross.*
$(MAKE) -C conmon clean
$(MAKE) -C pause clean
rm -f test/bin2img/bin2img
rm -f test/copyimg/copyimg
rm -f test/checkseccomp/checkseccomp
rm -rf ${BUILD_BIN_PATH}
# the approach here, rather than this target depending on the build targets
# directly, is such that each target should try to build regardless if it
# fails. And return a non-zero exit if _any_ target fails.
local-cross:
@$(MAKE) --keep-going $(CROSS_BUILD_TARGETS)
bin/crio.cross.%: .gopathok .explicit_phony
@echo "==> make $@"; \
TARGET="$*"; \
GOOS="$${TARGET%%.*}" \
GOARCH="$${TARGET##*.}" \
$(GO) build $(LDFLAGS) -tags "containers_image_openpgp btrfs_noversion" -o "$@" $(PROJECT)/cmd/crio
crioimage:
$(CONTAINER_RUNTIME) build -t ${CRIO_IMAGE} .
dbuild: crioimage
$(CONTAINER_RUNTIME) run --name=${CRIO_INSTANCE} -e BUILDTAGS --privileged -v ${PWD}:/go/src/${PROJECT} --rm ${CRIO_IMAGE} make binaries
integration: crioimage
$(CONTAINER_RUNTIME) run -e STORAGE_OPTIONS="--storage-driver=vfs" -e TEST_USERNS -e TESTFLAGS -e TRAVIS -e CRIO_BINARY -t --privileged --rm -v ${CURDIR}:/go/src/${PROJECT} ${CRIO_IMAGE} make localintegration
define go-build
$(shell cd `pwd` && $(GO) build -o ${BUILD_BIN_PATH}/${1} ${2})
endef
${BUILD_BIN_PATH}:
mkdir -p ${BUILD_BIN_PATH}
${GO_MD2MAN}: ${BUILD_BIN_PATH}
$(call go-build,go-md2man,./vendor/github.com/cpuguy83/go-md2man)
${GINKGO}: ${BUILD_BIN_PATH}
$(call go-build,ginkgo,./vendor/github.com/onsi/ginkgo/ginkgo)
${MOCKGEN}:
$(call go-build,mockgen,./vendor/github.com/golang/mock/mockgen)
${GIT_VALIDATION}:
$(call go-build,git-validation,./vendor/github.com/vbatts/git-validation)
${RELEASE_TOOL}:
$(call go-build,release-tool,./vendor/github.com/containerd/project/cmd/release-tool)
${GOLANGCI_LINT}:
$(call go-build,golangci-lint,./vendor/github.com/golangci/golangci-lint/cmd/golangci-lint)
vendor:
export GO111MODULE=on \
$(GO) mod tidy && \
$(GO) mod vendor && \
$(GO) mod verify
testunit: mockgen ${GINKGO}
rm -rf ${COVERAGE_PATH} && mkdir -p ${COVERAGE_PATH}
rm -rf ${JUNIT_PATH} && mkdir -p ${JUNIT_PATH}
${BUILD_BIN_PATH}/ginkgo \
${TESTFLAGS} \
-r \
--cover \
--covermode atomic \
--outputdir ${COVERAGE_PATH} \
--coverprofile coverprofile \
--tags "test $(BUILDTAGS)" \
--succinct
# fixes https://github.com/onsi/ginkgo/issues/518
sed -i '2,$${/^mode: atomic/d;}' ${COVERAGE_PATH}/coverprofile
$(GO) tool cover -html=${COVERAGE_PATH}/coverprofile -o ${COVERAGE_PATH}/coverage.html
$(GO) tool cover -func=${COVERAGE_PATH}/coverprofile | sed -n 's/\(total:\).*\([0-9][0-9].[0-9]\)/\1 \2/p'
find . -name '*_junit.xml' -exec mv -t ${JUNIT_PATH} {} +
testunit-bin:
mkdir -p ${TESTBIN_PATH}
for PACKAGE in `$(GO) list ./...`; do \
go test $$PACKAGE \
--tags "test $(BUILDTAGS)" \
--gcflags '-N' -c -o ${TESTBIN_PATH}/$$(basename $$PACKAGE) ;\
done
mockgen: ${MOCKGEN}
${MOCKGEN} \
${MOCKGEN_FLAGS} \
-package containerstoragemock \
-destination ${MOCK_PATH}/containerstorage/containerstorage.go \
github.com/containers/storage Store
${MOCKGEN} \
${MOCKGEN_FLAGS} \
-package criostoragemock \
-destination ${MOCK_PATH}/criostorage/criostorage.go \
github.com/cri-o/cri-o/pkg/storage ImageServer,RuntimeServer
${MOCKGEN} \
${MOCKGEN_FLAGS} \
-package libmock \
-destination ${MOCK_PATH}/lib/lib.go \
github.com/cri-o/cri-o/lib ConfigIface
${MOCKGEN} \
${MOCKGEN_FLAGS} \
-package ocimock \
-destination ${MOCK_PATH}/oci/oci.go \
github.com/cri-o/cri-o/oci RuntimeImpl
${MOCKGEN} \
${MOCKGEN_FLAGS} \
-package sandboxmock \
-destination ${MOCK_PATH}/sandbox/sandbox.go \
github.com/cri-o/cri-o/lib/sandbox NetNsIface
${BUILD_BIN_PATH}/mockgen \
${MOCKGEN_FLAGS} \
-package servermock \
-destination ${MOCK_PATH}/server/server.go \
github.com/cri-o/cri-o/server ConfigIface
${BUILD_BIN_PATH}/mockgen \
${MOCKGEN_FLAGS} \
-package imagetypesmock \
-destination ${MOCK_PATH}/containers/image/types.go \
github.com/containers/image/types Image
${BUILD_BIN_PATH}/mockgen \
${MOCKGEN_FLAGS} \
-package ocicnitypesmock \
-destination ${MOCK_PATH}/ocicni/types.go \
github.com/cri-o/ocicni/pkg/ocicni CNIPlugin
codecov: SHELL := $(shell which bash)
codecov:
bash <(curl -s https://codecov.io/bash) -f ${COVERAGE_PATH}/coverprofile
localintegration: clean binaries test-binaries
./test/test_runner.sh ${TESTFLAGS}
binaries: bin/crio bin/conmon bin/pause
test-binaries: test/bin2img/bin2img test/copyimg/copyimg test/checkseccomp/checkseccomp
MANPAGES_MD := $(wildcard docs/*.md)
MANPAGES := $(MANPAGES_MD:%.md=%)
docs/%.5: docs/%.5.md .gopathok ${GO_MD2MAN}
(${GO_MD2MAN} -in $< -out [email protected] && touch [email protected] && mv [email protected] $@) || \
docs/%.8: docs/%.8.md .gopathok ${GO_MD2MAN}
(${GO_MD2MAN} -in $< -out [email protected] && touch [email protected] && mv [email protected] $@) || \
docs: $(MANPAGES)
install: .gopathok install.bin install.man
install.bin: binaries
install ${SELINUXOPT} -D -m 755 bin/crio $(BINDIR)/crio
install ${SELINUXOPT} -D -m 755 bin/conmon $(LIBEXECDIR)/crio/conmon
install ${SELINUXOPT} -D -m 755 bin/pause $(LIBEXECDIR)/crio/pause
install.man: $(MANPAGES)
install ${SELINUXOPT} -d -m 755 $(MANDIR)/man5
install ${SELINUXOPT} -d -m 755 $(MANDIR)/man8
install ${SELINUXOPT} -m 644 $(filter %.5,$(MANPAGES)) -t $(MANDIR)/man5
install ${SELINUXOPT} -m 644 $(filter %.8,$(MANPAGES)) -t $(MANDIR)/man8
install.config: crio.conf
install ${SELINUXOPT} -d $(DATAROOTDIR)/oci/hooks.d
install ${SELINUXOPT} -D -m 644 crio.conf $(ETCDIR_CRIO)/crio.conf
install ${SELINUXOPT} -D -m 644 seccomp.json $(ETCDIR_CRIO)/seccomp.json
install ${SELINUXOPT} -D -m 644 crio-umount.conf $(OCIUMOUNTINSTALLDIR)/crio-umount.conf
install ${SELINUXOPT} -D -m 644 crictl.yaml $(CRICTL_CONFIG_DIR)
install.completions:
install ${SELINUXOPT} -d -m 755 ${BASHINSTALLDIR}
install.systemd:
install ${SELINUXOPT} -D -m 644 contrib/systemd/crio.service $(PREFIX)/lib/systemd/system/crio.service
ln -sf crio.service $(PREFIX)/lib/systemd/system/cri-o.service
install ${SELINUXOPT} -D -m 644 contrib/systemd/crio-shutdown.service $(PREFIX)/lib/systemd/system/crio-shutdown.service
uninstall:
rm -f $(BINDIR)/crio
rm -f $(LIBEXECDIR)/crio/conmon
rm -f $(LIBEXECDIR)/crio/pause
for i in $(filter %.5,$(MANPAGES)); do \
rm -f $(MANDIR)/man5/$$(basename $${i}); \
done
for i in $(filter %.8,$(MANPAGES)); do \
rm -f $(MANDIR)/man8/$$(basename $${i}); \
done
# When this is running in travis, it will only check the travis commit range
.gitvalidation: .gopathok ${GIT_VALIDATION}
ifeq ($(TRAVIS),true)
GIT_CHECK_EXCLUDE="./vendor" ${GIT_VALIDATION} -q -run DCO,short-subject,dangling-whitespace
else
GIT_CHECK_EXCLUDE="./vendor" ${GIT_VALIDATION} -v -run DCO,short-subject,dangling-whitespace -range $(EPOCH_TEST_COMMIT)..HEAD
endif
.PHONY: \
.explicit_phony \
.gitvalidation \
bin/conmon \
bin/crio \
bin/pause \
binaries \
build-static \
clean \
default \
docs \
help \
install \
lint \
local-cross \
nix-image \
uninstall \
vendor