forked from cri-o/cri-o
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
597 lines (492 loc) · 19.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
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
GO ?= go
TRIMPATH ?= -trimpath
GO_ARCH=$(shell $(GO) env GOARCH)
GO_BUILD ?= $(GO) build $(TRIMPATH)
GO_RUN ?= $(GO) run
NIX_IMAGE ?= nixos/nix:2.24.3
PROJECT := github.com/cri-o/cri-o
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/openpgp_tag.sh) \
$(shell hack/seccomp_tag.sh) \
$(shell hack/selinux_tag.sh) \
$(shell hack/libsubid_tag.sh)
# Device mapper is deprecated; keep this tag until the dm code
# is removed from the c/storage vendored here.
BUILDTAGS += exclude_graphdriver_devicemapper
CRICTL_CONFIG_DIR=${DESTDIR}/etc
CONTAINER_RUNTIME ?= podman
PWD := $(shell pwd)
BUILD_PATH := ${PWD}/build
BUILD_BIN_PATH := ${BUILD_PATH}/bin
COVERAGE_PATH := ${BUILD_PATH}/coverage
TESTBIN_PATH := ${BUILD_PATH}/test
MOCK_PATH := ./test/mocks
MANPAGES_MD := $(wildcard docs/*.md)
MANPAGES := $(MANPAGES_MD:%.md=%)
BASHINSTALLDIR=${PREFIX}/share/bash-completion/completions
FISHINSTALLDIR=${PREFIX}/share/fish/completions
ZSHINSTALLDIR=${PREFIX}/share/zsh/site-functions
OCIUMOUNTINSTALLDIR=$(PREFIX)/share/oci-umount/oci-umount.d
SELINUXOPT ?= $(shell selinuxenabled 2>/dev/null && echo -Z)
SOURCE_DATE_EPOCH ?= $(shell date +%s)
GO_MD2MAN ?= ${BUILD_BIN_PATH}/go-md2man
GINKGO := ${BUILD_BIN_PATH}/ginkgo
MOCKGEN := ${BUILD_BIN_PATH}/mockgen
GOLANGCI_LINT := ${BUILD_BIN_PATH}/golangci-lint
GOLANGCI_LINT_VERSION := v1.62.2
GO_MOD_OUTDATED := ${BUILD_BIN_PATH}/go-mod-outdated
GO_MOD_OUTDATED_VERSION := 0.9.0
GOSEC := ${BUILD_BIN_PATH}/gosec
GOSEC_VERSION := 2.19.0
MDTOC := ${BUILD_BIN_PATH}/mdtoc
MDTOC_VERSION := v1.4.0
RELEASE_NOTES := ${BUILD_BIN_PATH}/release-notes
RELEASE_NOTES_VERSION := v0.17.8
ZEITGEIST := ${BUILD_BIN_PATH}/zeitgeist
ZEITGEIST_VERSION := v0.5.4
SHFMT := ${BUILD_BIN_PATH}/shfmt
SHFMT_VERSION := v3.9.0
SHELLCHECK := ${BUILD_BIN_PATH}/shellcheck
SHELLCHECK_VERSION := v0.10.0
BATS_FILES := $(wildcard test/*.bats)
ifeq ($(shell bash -c '[[ `command -v git` && `git rev-parse --git-dir 2>/dev/null` ]] && echo true'), true)
COMMIT_NO := $(shell git rev-parse HEAD 2> /dev/null || true)
GIT_TREE_STATE := $(if $(shell git status --porcelain --untracked-files=no),dirty,clean)
else
COMMIT_NO := unknown
GIT_TREE_STATE := unknown
endif
# pass crio CLI options to generate custom configuration options at build time
CONF_OVERRIDES ?=
CROSS_BUILD_TARGETS := \
bin/crio.cross.windows.amd64 \
bin/crio.cross.darwin.amd64 \
bin/crio.cross.linux.amd64
GO_FILES := $(shell find . -type f -name '*.go' -not -name '*_test.go')
# Some of the packages use the golang testing infra in end-to-end tests.
# These can't be run as unit tests so ginkgo should skip them.
GINKGO_SKIP_PACKAGES = test/nri
# Set DEBUG=1 to enable debug symbols in binaries
DEBUG ?= 0
ifeq ($(DEBUG),0)
SHRINKFLAGS = -s -w
else
GCFLAGS = -gcflags '-N -l'
endif
DATE_FMT = +'%Y-%m-%dT%H:%M:%SZ'
ifdef SOURCE_DATE_EPOCH
BUILD_DATE ?= $(shell date -u -d "@$(SOURCE_DATE_EPOCH)" "$(DATE_FMT)" 2>/dev/null || date -u -r "$(SOURCE_DATE_EPOCH)" "$(DATE_FMT)" 2>/dev/null || date -u "$(DATE_FMT)")
else
BUILD_DATE ?= $(shell date -u "$(DATE_FMT)")
endif
BASE_LDFLAGS = ${SHRINKFLAGS} \
-X ${PROJECT}/internal/version.buildDate=${BUILD_DATE}
GO_LDFLAGS = -ldflags '${BASE_LDFLAGS} ${EXTRA_LDFLAGS}'
define curl_to
curl -sSfL --retry 5 --retry-delay 3 "$(1)" -o $(2)
chmod +x $(2)
endef
all: binaries crio.conf docs
COLOR:=\\033[36m
NOCOLOR:=\\033[0m
WIDTH:=30
.PHONY: help
help: ## Display this help.
@awk \
-v "col=${COLOR}" -v "nocol=${NOCOLOR}" \
' \
BEGIN { \
FS = ":.*##" ; \
printf "Usage:\n make %s<target>%s\n", col, nocol \
} \
/^[./a-zA-Z_-]+:.*?##/ { \
printf " %s%-${WIDTH}s%s %s\n", col, $$1, nocol, $$2 \
} \
/^##@/ { \
printf "\n%s\n", substr($$0, 5) \
} \
' $(MAKEFILE_LIST)
$(BUILD_BIN_PATH):
mkdir -p $(BUILD_BIN_PATH)
$(GO_MD2MAN):
hack/go-install.sh $(BUILD_BIN_PATH) go-md2man github.com/cpuguy83/go-md2man/v2@latest
$(GINKGO):
hack/go-install.sh $(BUILD_BIN_PATH) ginkgo github.com/onsi/ginkgo/v2/ginkgo@latest
$(RELEASE_NOTES): $(BUILD_BIN_PATH)
$(call curl_to,https://storage.googleapis.com/k8s-artifacts-sig-release/kubernetes/release/$(RELEASE_NOTES_VERSION)/release-notes-amd64-linux,$(RELEASE_NOTES))
$(SHFMT): $(BUILD_BIN_PATH)
$(call curl_to,https://github.com/mvdan/sh/releases/download/$(SHFMT_VERSION)/shfmt_$(SHFMT_VERSION)_linux_amd64,$(SHFMT))
$(ZEITGEIST): $(BUILD_BIN_PATH)
$(call curl_to,https://storage.googleapis.com/k8s-artifacts-sig-release/kubernetes-sigs/zeitgeist/$(ZEITGEIST_VERSION)/zeitgeist-amd64-linux,$(ZEITGEIST))
$(MOCKGEN):
hack/go-install.sh $(BUILD_BIN_PATH) mockgen go.uber.org/mock/mockgen@latest
$(GO_MOD_OUTDATED): $(BUILD_BIN_PATH)
$(call curl_to,https://github.com/psampaz/go-mod-outdated/releases/download/v$(GO_MOD_OUTDATED_VERSION)/go-mod-outdated_$(GO_MOD_OUTDATED_VERSION)_Linux_x86_64.tar.gz,$(BUILD_BIN_PATH)/gmo.tar.gz)
tar xf $(BUILD_BIN_PATH)/gmo.tar.gz -C $(BUILD_BIN_PATH)
$(GOSEC): $(BUILD_BIN_PATH)
$(call curl_to,https://github.com/securego/gosec/releases/download/v$(GOSEC_VERSION)/gosec_$(GOSEC_VERSION)_linux_amd64.tar.gz,$(BUILD_BIN_PATH)/gosec.tar.gz)
tar xf $(BUILD_BIN_PATH)/gosec.tar.gz -C $(BUILD_BIN_PATH)
$(MDTOC): $(BUILD_BIN_PATH)
$(call curl_to,https://storage.googleapis.com/k8s-artifacts-sig-release/kubernetes-sigs/mdtoc/$(MDTOC_VERSION)/mdtoc-amd64-linux,$(MDTOC))
$(GOLANGCI_LINT):
export VERSION=$(GOLANGCI_LINT_VERSION) \
URL=https://raw.githubusercontent.com/golangci/golangci-lint \
BINDIR=${BUILD_BIN_PATH} && \
curl -sSfL $$URL/$$VERSION/install.sh | sh -s $$VERSION
$(SHELLCHECK): $(BUILD_BIN_PATH)
URL=https://github.com/koalaman/shellcheck/releases/download/$(SHELLCHECK_VERSION)/shellcheck-$(SHELLCHECK_VERSION).linux.x86_64.tar.xz \
SHA256SUM=f35ae15a4677945428bdfe61ccc297490d89dd1e544cc06317102637638c6deb && \
curl -sSfL $$URL | tar xfJ - -C ${BUILD_BIN_PATH} --strip 1 shellcheck-$(SHELLCHECK_VERSION)/shellcheck && \
sha256sum ${SHELLCHECK} | grep -q $$SHA256SUM
##@ Build targets:
.PHONY: binaries
binaries: bin/crio bin/pinns ## Build all binaries.
.PHONY: test-binaries
test-binaries: ## Build all test-binaries.
test-binaries: \
test/copyimg/copyimg \
test/checkseccomp/checkseccomp \
test/checkcriu/checkcriu \
test/nri/nri.test
bin/pinns: ## Build pinns.
$(MAKE) -C pinns
test/copyimg/copyimg: $(GO_FILES) ## Build the compyimg test binary.
$(GO_BUILD) $(GCFLAGS) $(GO_LDFLAGS) -tags "$(BUILDTAGS)" -o $@ ./test/copyimg
test/checkseccomp/checkseccomp: $(GO_FILES) ## Build the checkseccomp test binary.
$(GO_BUILD) $(GCFLAGS) $(GO_LDFLAGS) -tags "$(BUILDTAGS)" -o $@ ./test/checkseccomp
test/checkcriu/checkcriu: $(GO_FILES) ## Build the checkcriu test binary.
$(GO_BUILD) $(GCFLAGS) $(GO_LDFLAGS) -tags "$(BUILDTAGS)" -o $@ ./test/checkcriu
test/nri/nri.test: $(wildcard test/nri/*.go) ## Build the NRI test binary.
$(GO) test --tags "test $(BUILDTAGS)" -c ./test/nri -o $@
bin/crio: $(GO_FILES) ## Build the CRI-O main binary.
$(GO_BUILD) $(GCFLAGS) $(GO_LDFLAGS) -tags "$(BUILDTAGS)" -o $@ ./cmd/crio
.PHONY: build-static
build-static: ## Build the static binaries.
$(CONTAINER_RUNTIME) run --network=host --rm --privileged -ti -v /:/mnt \
$(NIX_IMAGE) cp -rfT /nix /mnt/nix
$(CONTAINER_RUNTIME) run --network=host --rm --privileged -ti -v /nix:/nix -v ${PWD}:${PWD} -w ${PWD} \
$(NIX_IMAGE) nix --print-build-logs --option cores 8 --option max-jobs 8 build --file nix/
mkdir -p bin
cp -r result/bin bin/static
.PHONY: crio.conf
crio.conf: bin/crio ## Build the CRI-O configuration.
./bin/crio -d "" --config="" $(CONF_OVERRIDES) config > crio.conf
# 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.
.PHONY: local-cross
local-cross: ## Build the cross compilation targets.
@$(MAKE) --keep-going $(CROSS_BUILD_TARGETS)
bin/crio.cross.%:
@echo "==> make $@"; \
TARGET="$*"; \
GOOS="$${TARGET%%.*}" \
GOARCH="$${TARGET##*.}" \
$(GO_BUILD) $(GO_LDFLAGS) -tags "containers_image_openpgp btrfs_noversion exclude_graphdriver_devicemapper" -o "$@" ./cmd/crio
.PHONY: bin/metrics-exporter
bin/metrics-exporter: ## Build the metrics exporter.
$(GO_BUILD) -o $@ \
-ldflags '-linkmode external -extldflags "-static -lm"' \
-tags netgo \
./contrib/metrics-exporter
.PHONY: metrics-exporter
metrics-exporter: bin/metrics-exporter ## Build the metrics exporter container.
$(CONTAINER_RUNTIME) build . \
-f contrib/metrics-exporter/Containerfile \
-t quay.io/crio/metrics-exporter:latest
.PHONY: install
install: install.bin install.man install.completions install.systemd install.config ## Install the project locally.
.PHONY: install.bin-nobuild
install.bin-nobuild: ## Install the binaries.
install ${SELINUXOPT} -D -m 755 bin/crio $(BINDIR)/crio
install ${SELINUXOPT} -D -m 755 bin/pinns $(BINDIR)/pinns
.PHONY: install.bin
install.bin: binaries install.bin-nobuild ## Build and install the binaries.
.PHONY: install.man-nobuild
install.man-nobuild: ## Install the man pages.
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
.PHONY: install.man
install.man: $(MANPAGES) install.man-nobuild ## Build and install the man pages.
.PHONY: install.config-nobuild
install.config-nobuild: ## Install the configuration files.
install ${SELINUXOPT} -d $(DATAROOTDIR)/oci/hooks.d
install ${SELINUXOPT} -d $(ETCDIR_CRIO)/crio.conf.d
install ${SELINUXOPT} -D -m 644 crio.conf $(ETCDIR_CRIO)/crio.conf
install ${SELINUXOPT} -D -m 644 crio-umount.conf $(OCIUMOUNTINSTALLDIR)/crio-umount.conf
install ${SELINUXOPT} -D -m 644 crictl.yaml $(CRICTL_CONFIG_DIR)
.PHONY: install.config
install.config: crio.conf install.config-nobuild ## Build and install the configuration files.
.PHONY: install.completions
install.completions: ## Install the completions.
install ${SELINUXOPT} -d -m 755 ${BASHINSTALLDIR}
install ${SELINUXOPT} -d -m 755 ${FISHINSTALLDIR}
install ${SELINUXOPT} -d -m 755 ${ZSHINSTALLDIR}
install ${SELINUXOPT} -D -m 644 -t ${BASHINSTALLDIR} completions/bash/crio
install ${SELINUXOPT} -D -m 644 -t ${FISHINSTALLDIR} completions/fish/crio.fish
install ${SELINUXOPT} -D -m 644 -t ${ZSHINSTALLDIR} completions/zsh/_crio
.PHONY: install.systemd
install.systemd: ## Install the systemd unit files.
install ${SELINUXOPT} -D -m 644 contrib/systemd/crio.service $(PREFIX)/lib/systemd/system/crio.service
install ${SELINUXOPT} -D -m 644 contrib/systemd/crio-wipe.service $(PREFIX)/lib/systemd/system/crio-wipe.service
.PHONY: uninstall
uninstall: ## Uninstall all files.
rm -f $(BINDIR)/crio
rm -f $(BINDIR)/pinns
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
rm -f ${BASHINSTALLDIR}/crio
rm -f ${FISHINSTALLDIR}/crio.fish
rm -f ${ZSHINSTALLDIR}/_crio
rm -f $(PREFIX)/lib/systemd/system/crio-wipe.service
rm -f $(PREFIX)/lib/systemd/system/crio.service
rm -f $(PREFIX)/lib/systemd/system/cri-o.service
rm -rf $(DATAROOTDIR)/oci/hooks.d
rm -f $(ETCDIR_CRIO)/crio.conf
rm -rf $(ETCDIR_CRIO)/crio.conf.d
rm -f $(OCIUMOUNTINSTALLDIR)/crio-umount.conf
rm -f $(CRICTL_CONFIG_DIR)/crictl.yaml
##@ Verify targets:
.PHONY: lint
lint: ${GOLANGCI_LINT} ## Run the golang linter, see also: .github/workflows/verify.yml.
${GOLANGCI_LINT} version
${GOLANGCI_LINT} linters
GL_DEBUG=gocritic ${GOLANGCI_LINT} run
.PHONY: check-log-lines
check-log-lines: ## Verify that all log lines start with a capitalized letter.
./hack/log-capitalized.sh
./hack/tree_status.sh
.PHONY: check-config-template
check-config-template: ## Validate that the config template is correct.
./hack/validate-config.sh
.PHONY: shellfiles
shellfiles: ${SHFMT}
$(eval SHELLFILES=$(shell ${SHFMT} -f . | grep -v vendor/ | grep -v hack/lib | grep -v hack/build-rpms.sh | grep -v .bats))
.PHONY: shfmt
shfmt: shellfiles ## Run shfmt on all shell files.
${SHFMT} -ln bash -w -i 4 -d ${SHELLFILES}
${SHFMT} -ln bats -w -sr -d $(BATS_FILES)
.PHONY: shellcheck
shellcheck: shellfiles ${SHELLCHECK} ## Run shellcheck on all shell files.
${SHELLCHECK} \
-P scripts \
-P test \
-x \
${SHELLFILES} ${BATS_FILES}
.PHONY: check-nri-bats-tests
check-nri-bats-tests: test/nri/nri.test ## Run the bats NRI tests.
./hack/check-nri-bats-tests.sh
.PHONY: check-vendor
check-vendor: vendor ## Check the vendored golang dependencies.
./hack/tree_status.sh
.PHONY: testunit
testunit: ${GINKGO} ## Run the unit tests.
rm -rf ${COVERAGE_PATH} && mkdir -p ${COVERAGE_PATH}
${BUILD_BIN_PATH}/ginkgo run \
${TESTFLAGS} \
-r \
--skip-package $(GINKGO_SKIP_PACKAGES) \
--trace \
--cover \
--covermode atomic \
--output-dir ${COVERAGE_PATH} \
--junit-report junit.xml \
--coverprofile coverprofile \
--tags "test $(BUILDTAGS)" \
$(GO_MOD_VENDOR) \
--succinct
$(GO) tool cover -html=${COVERAGE_PATH}/coverprofile -o ${COVERAGE_PATH}/coverage.html
.PHONY: localintegration
localintegration: clean binaries test-binaries ## Run the local integration tests.
./test/test_runner.sh ${TESTFLAGS}
.PHONY: verify-dependencies
verify-dependencies: ${ZEITGEIST} ## Verify the local dependencies.
${BUILD_BIN_PATH}/zeitgeist validate --local-only --base-path . --config dependencies.yaml
.PHONY: verify-gosec
verify-gosec: ${GOSEC} ## Run gosec on the project.
${BUILD_BIN_PATH}/gosec -exclude-dir=test -exclude-dir=_output -severity high -confidence high -exclude G304,G108 ./...
.PHONY: verify-govulncheck
verify-govulncheck: ## Check common vulnerabilities.
./hack/govulncheck.sh
.PHONY: verify-mdtoc
verify-mdtoc: ${MDTOC} ## Verify the table of contents for the docs.
git grep --name-only '<!-- toc -->' | grep -v Makefile | xargs ${MDTOC} -i -m=5
./hack/tree_status.sh
.PHONY: verify-prettier
verify-prettier: prettier ## Run prettier on the project.
./hack/tree_status.sh
##@ Utility targets:
.PHONY: clean
clean: ## Clean the repository.
rm -rf _output
rm -f docs/*.5 docs/*.8
rm -fr test/testdata/redis-image
find . -name \*~ -delete
find . -name \#\* -delete
rm -rf bin/
$(MAKE) -C pinns clean
rm -f test/copyimg/copyimg
rm -f test/checkseccomp/checkseccomp
rm -f test/checkcriu/checkcriu
rm -f test/nri/nri.test
rm -rf ${BUILD_BIN_PATH}
.PHONY: nixpkgs
nixpkgs: ## Update the NIX package dependencies.
@nix run -f channel:nixpkgs-unstable nix-prefetch-git -- \
--no-deepClone https://github.com/nixos/nixpkgs > nix/nixpkgs.json
.PHONY: vendor
vendor: export GOSUMDB :=
vendor: ## Update the vendored dependencies.
$(GO) mod tidy
$(GO) mod vendor
$(GO) mod verify
.PHONY: testunit-bin
testunit-bin: ## Build the unit test binaries.
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
.PHONY: mockgen
mockgen: ## Regenerate all mocks.
mockgen: \
mock-cmdrunner \
mock-containerstorage \
mock-containereventserver \
mock-criostorage \
mock-lib-config \
mock-oci \
mock-image-types \
mock-ocicni-types \
mock-seccompociartifact-types \
mock-ociartifact-types \
mock-systemd
.PHONY: mock-containereventserver
mock-containereventserver: ${MOCKGEN}
${MOCKGEN} \
-package containereventservermock \
-destination ${MOCK_PATH}/containereventserver/containereventserver.go \
k8s.io/cri-api/pkg/apis/runtime/v1 RuntimeService_GetContainerEventsServer
.PHONY: mock-containerstorage
mock-containerstorage: ${MOCKGEN}
${MOCKGEN} \
-package containerstoragemock \
-destination ${MOCK_PATH}/containerstorage/containerstorage.go \
github.com/containers/storage Store
.PHONY: mock-cmdrunner
mock-cmdrunner: ${MOCKGEN}
${MOCKGEN} \
-package cmdrunnermock \
-destination ${MOCK_PATH}/cmdrunner/cmdrunner.go \
github.com/cri-o/cri-o/utils/cmdrunner CommandRunner
.PHONY: mock-criostorage
mock-criostorage: ${MOCKGEN}
${MOCKGEN} \
-package criostoragemock \
-destination ${MOCK_PATH}/criostorage/criostorage.go \
github.com/cri-o/cri-o/internal/storage ImageServer,RuntimeServer,StorageTransport
.PHONY: mock-lib-config
mock-lib-config: ${MOCKGEN}
${MOCKGEN} \
-package libconfigmock \
-destination ${MOCK_PATH}/lib/lib.go \
github.com/cri-o/cri-o/pkg/config Iface
.PHONY: mock-oci
mock-oci: ${MOCKGEN}
${MOCKGEN} \
-package ocimock \
-destination ${MOCK_PATH}/oci/oci.go \
github.com/cri-o/cri-o/internal/oci RuntimeImpl
.PHONY: mock-image-types
mock-image-types: ${MOCKGEN}
${BUILD_BIN_PATH}/mockgen \
-package imagetypesmock \
-destination ${MOCK_PATH}/containers/image/v5/types.go \
github.com/containers/image/v5/types ImageCloser
.PHONY: mock-ocicni-types
mock-ocicni-types: ${MOCKGEN}
${BUILD_BIN_PATH}/mockgen \
-package ocicnitypesmock \
-destination ${MOCK_PATH}/ocicni/types.go \
github.com/cri-o/ocicni/pkg/ocicni CNIPlugin
.PHONY: mock-seccompociartifact-types
mock-seccompociartifact-types: ${MOCKGEN}
${BUILD_BIN_PATH}/mockgen \
-package seccompociartifactmock \
-destination ${MOCK_PATH}/seccompociartifact/seccompociartifact.go \
github.com/cri-o/cri-o/internal/config/seccomp/seccompociartifact Impl
.PHONY: mock-ociartifact-types
mock-ociartifact-types: ${MOCKGEN}
${BUILD_BIN_PATH}/mockgen \
-package ociartifactmock \
-destination ${MOCK_PATH}/ociartifact/ociartifact.go \
github.com/cri-o/cri-o/internal/config/ociartifact Impl
.PHONY: mock-systemd
mock-systemd: ${MOCKGEN}
${MOCKGEN} \
-package systemdmock \
-destination ${MOCK_PATH}/systemd/systemd.go \
github.com/cri-o/cri-o/internal/watchdog Systemd
docs/%.5: docs/%.5.md ${GO_MD2MAN}
(${GO_MD2MAN} -in $< -out [email protected] && touch [email protected] && mv [email protected] $@) || \
docs/%.8: docs/%.8.md ${GO_MD2MAN}
(${GO_MD2MAN} -in $< -out [email protected] && touch [email protected] && mv [email protected] $@) || \
.PHONY: completions-generation
completions-generation: ## Generate the command line shell completions.
bin/crio complete bash > completions/bash/crio
bin/crio complete fish > completions/fish/crio.fish
bin/crio complete zsh > completions/zsh/_crio
.PHONY: docs
docs: $(MANPAGES) ## Build the man pages.
.PHONY: docs-generation
docs-generation: ## Generate the documentation.
bin/crio -d "" --config="" md > docs/crio.8.md
bin/crio -d "" --config="" man > docs/crio.8
.PHONY: prettier
prettier: ## Prettify supported files.
$(CONTAINER_RUNTIME) run -it --privileged -v ${PWD}:/w -w /w --entrypoint bash node:latest -c \
'npm install -g prettier && prettier -w .'
.PHONY: docs-validation
docs-validation: ## Validate the documentation.
$(GO_RUN) -tags "$(BUILDTAGS)" ./test/docs-validation
##@ CI targets:
.PHONY: release
release: ## Run the release script.
${GO_RUN} ./scripts/release
.PHONY: tag-reconciler
tag-reconciler: ## Run the release tag reconciler script.
${GO_RUN} ./scripts/tag-reconciler
.PHONY: release-notes
release-notes: ${RELEASE_NOTES} ## Run the release notes tool.
${GO_RUN} ./scripts/release-notes \
--output-path ${BUILD_PATH}/release-notes
.PHONY: dependencies
dependencies: ${GO_MOD_OUTDATED} ## Run the golang dependency report.
${GO_RUN} ./scripts/dependencies \
--output-path ${BUILD_PATH}/dependencies
.PHONY: release-branch-forward
release-branch-forward: ## Run the release branch fast forward script.
$(GO_RUN) ./scripts/release-branch-forward
.PHONY: upload-artifacts
upload-artifacts: ## Upload the built artifacts.
./scripts/upload-artifacts