-
Notifications
You must be signed in to change notification settings - Fork 57
/
Makefile
863 lines (714 loc) · 29.3 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
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
# We use bashisms in this Makefile.
SHELL := /bin/bash
# Go compiler/toolchain and extra related binaries we ues/need.
GO_PARALLEL :=
GO_CMD := go
GO_BUILD := $(GO_CMD) build $(GO_PARALLEL)
GO_GEN := $(GO_CMD) generate -x
GO_INSTALL := $(GO_CMD) install
GO_FMT := gofmt
GO_CYCLO := gocyclo
GO_LINT := golint
GO_CILINT := golangci-lint
GO_VERSION ?= 1.22.6
GOLICENSES_VERSION ?= v1.5.0
# TEST_TAGS is the set of extra build tags passed for tests.
# We disable AVX collector for tests by default.
TEST_TAGS := noavx,test
GO_TEST := $(GO_CMD) test $(GO_PARALLEL) -tags $(TEST_TAGS)
GO_VET := $(GO_CMD) vet -tags $(TEST_TAGS)
TEST_SETUP := test-setup.sh
TEST_CLEANUP := test-cleanup.sh
# Disable some golangci_lint checkers for now until we have an more acceptable baseline...
GO_CILINT_CHECKERS := -D unused,staticcheck,errcheck,deadcode,structcheck,gosimple -E revive,gofmt
GO_CILINT_RUNFLAGS := --build-tags $(TEST_TAGS)
# Protoc compiler and protobuf definitions we might need to recompile.
PROTOC := $(shell command -v protoc;)
PROTOBUFS = $(shell find cmd pkg -name \*.proto)
PROTOCODE := $(patsubst %.proto,%.pb.go,$(PROTOBUFS))
PROTO_INCLUDE = -I$(PWD):/usr/local/include:/usr/include
PROTO_OPTIONS = --proto_path=. $(PROTO_INCLUDE) \
--go_opt=paths=source_relative --go_out=. \
--go-grpc_opt=paths=source_relative --go-grpc_out=.
PROTO_COMPILE = $(PROTOC) $(PROTO_OPTIONS)
# ShellCheck for checking shell scripts.
SHELLCHECK := shellcheck
CLANG := clang
KERNEL_VERSION ?= $(shell uname -r)
KERNEL_HEADERS_DIR ?= /lib/modules/$(KERNEL_VERSION)/source
KERNEL_BUILD_DIR ?= /lib/modules/$(KERNEL_VERSION)/build
# Directory for full kernel sources
KERNEL_SRC_DIR ?= /usr/src/linux
# Binaries and directories for installation.
INSTALL := install
PREFIX ?= /usr
BINDIR ?= $(PREFIX)/bin
UNITDIR ?= $(PREFIX)/lib/systemd/system
DOCDIR ?= $(PREFIX)/share/doc/cri-resource-manager
SYSCONFDIR ?= /etc
CONFIGDIR ?= /etc/cri-resmgr
DEFAULTDIR ?= $(shell \
[ -d /etc/rpm ] && { echo /etc/sysconfig; exit 0; }; \
[ -f /etc/debian_version ] && { echo /etc/default; exit 0; }; \
echo unknown; exit 1)
# Directories (in cmd) with go code we'll want to build and install.
BUILD_DIRS = $(shell find cmd -name \*.go | sed 's:cmd/::g;s:/.*::g' | uniq)
BUILD_BINS = $(foreach dir,$(BUILD_DIRS),bin/$(dir))
# Directories (in cmd) with go code we'll want to create Docker images from.
IMAGE_DIRS = $(shell find cmd -name Dockerfile | sed 's:cmd/::g;s:/.*::g' | uniq)
IMAGE_VERSION := $(shell git describe --dirty 2> /dev/null || echo unknown)
ifdef IMAGE_REPO
override IMAGE_REPO := $(IMAGE_REPO)/
endif
# List of our active go modules.
GO_LIST_MODULES := $(GO_CMD) list ./... | grep -v vendor/
GO_PKG_SRC = $(shell find pkg -name \*.go)
# List of visualizer collateral files to go generate.
UI_ASSETS := $(shell for i in pkg/cri/resource-manager/visualizer/*; do \
if [ -d "$$i" -a -e "$$i/assets_generate.go" ]; then \
echo $$i/assets_gendata.go; \
fi; \
done)
# Right now we don't depend on libexec/%.o on purpose so make sure the file
# is always up-to-date when elf/avx512.c is changed.
GEN_TARGETS := pkg/avx/programbytes_gendata.go $(PROTOCODE)
# Determine binary version and buildid, and versions for rpm, deb, and tar packages.
BUILD_VERSION := $(shell scripts/build/get-buildid --version --shell=no)
BUILD_BUILDID := $(shell scripts/build/get-buildid --buildid --shell=no)
RPM_VERSION := $(shell scripts/build/get-buildid --rpm --shell=no)
DEB_VERSION := $(shell scripts/build/get-buildid --deb --shell=no)
TAR_VERSION := $(shell scripts/build/get-buildid --tar --shell=no)
# Kubernetes version we pull in as modules and our external API versions.
KUBERNETES_VERSION := $(shell grep 'k8s.io/kubernetes ' go.mod | sed 's/^.* //')
RESMGR_API_VERSION := $(shell ls pkg/apis/resmgr | grep '^v[0-9]*')
# Git (tagged) version and revisions we'll use to linker-tag our binaries with.
RANDOM_ID := "$(shell head -c20 /dev/urandom | od -An -tx1 | tr -d ' \n')"
ifdef STATIC
STATIC_LDFLAGS:=-extldflags=-static
BUILD_TAGS:=-tags osusergo,netgo
endif
LDFLAGS = \
-ldflags "$(STATIC_LDFLAGS) -X=github.com/intel/cri-resource-manager/pkg/version.Version=$(BUILD_VERSION) \
-X=github.com/intel/cri-resource-manager/pkg/version.Build=$(BUILD_BUILDID) \
-B 0x$(RANDOM_ID)"
# Build non-optimized version for debugging on make DEBUG=1.
DEBUG ?= 0
ifeq ($(DEBUG),1)
GCFLAGS=-gcflags "all=-N -l"
else
GCFLAGS=
endif
# Release/end-to-end testing. Specify E2E_TESTS to override the default test set.
E2E_RUN := reinstall_cri_resmgr=1 test/e2e/run_tests.sh
# tar-related commands and options.
TAR := tar
TAR_UPDATE := $(TAR) -uf
GZIP := gzip
GZIP_DC := gzip -dc
GZEXT := .gz
# Metadata for packages, changelog, etc.
USER_NAME ?= $(shell git config user.name)
USER_EMAIL ?= $(shell git config user.email)
BUILD_DATE ?= $(shell date -R)
# RPM spec files we might want to generate.
SPEC_FILES = $(shell find packaging -name \*.spec.in | sed 's/.spec.in/.spec/g' | uniq)
# Systemd collateral.
SYSTEMD_DIRS = $(shell find cmd -name \*.service -o -name \*.socket | sed 's:cmd/::g;s:/.*::g'|uniq)
SYSCONF_DIRS = $(shell find cmd -name \*.sysconf | sed 's:cmd/::g;s:/.*::g' | uniq)
DOCKER := docker
# Extra options to pass to docker (for instance --network host).
DOCKER_OPTIONS =
# Set this to empty to prevent 'docker build' from trying to pull all image refs.
DOCKER_PULL := --pull
# Docker boilerplate/commands to build debian/ubuntu packages.
DOCKER_DEB_BUILD := \
cd /build && \
tar -xvf /build/input/cri-resource-manager-$(TAR_VERSION).tar.gz && \
cd cri-resource-manager-$(TAR_VERSION) && \
cp -r /build/input/debian . && \
dpkg-buildpackage -uc && \
cp ../*.{buildinfo,changes,deb,dsc} /output
# Docker boilerplate/commands to build rpm packages.
DOCKER_RPM_BUILD := \
mkdir -p ~/rpmbuild/{SOURCES,SPECS} && \
cp -v /build/input/*.spec ~/rpmbuild/SPECS && \
cp -v /build/input/*.tar.* ~/rpmbuild/SOURCES && \
for spec in ~/rpmbuild/SPECS/*.spec; do \
rpmbuild -bb $$spec; \
done && \
cp -v $$(rpm --eval %{_rpmdir}/%{_arch})/*.rpm /output
# Docker boilerplate/commands to build binary tarballs.
DOCKER_TAR_BUILD := \
cd ~ && \
$(GZIP_DC) /build/input/cri-resource-manager-$(TAR_VERSION).tar$(GZ_EXT) | \
$(TAR) -xf - && \
cd cri-resource-manager-$(TAR_VERSION) && \
$(MAKE) OUTPUT=/output/ binary-dist
# Docker boilerplate/commands to build binaries.
DOCKER_BIN_BUILD := \
mkdir ~/build && cd ~/build && \
tar -xvzf /build/input/cri-resource-manager-$(TAR_VERSION).tar$(GZEXT) && \
cd cri-resource-manager-$(TAR_VERSION) && \
make && \
cp -v bin/* /output
# Documentation-related variables
SPHINXOPTS ?= -W
SPHINXBUILD = sphinx-build
SITE_BUILDDIR ?= _build
# Docker base command for working with html documentation.
DOCKER_SITE_BUILDER_IMAGE := cri-resmgr-site-builder
DOCKER_SITE_CMD := $(DOCKER) run --rm -v "`pwd`:/docs" --user=`id -u`:`id -g` \
-p 8081:8081 \
-e SITE_BUILDDIR=$(SITE_BUILDDIR) -e SPHINXOPTS=$(SPHINXOPTS)
# Supported distros with debian native packaging format.
SUPPORTED_DEB_DISTROS := $(shell \
grep -l 'apt-get ' dockerfiles/cross-build/Dockerfile.* | \
egrep -v '((~)|(swp))$$' | \
sed 's:^.*Dockerfile.::g')
# Supported distros with rpm native packaging format.
SUPPORTED_RPM_DISTROS := $(shell \
egrep -l '(dnf )|(yum )|(zypper )' dockerfiles/cross-build/Dockerfile.* | \
egrep -v '((~)|(swp))$$' | \
sed 's:^.*Dockerfile.::g')
# Directory to leave built distro packages and collateral in.
PACKAGES_DIR := packages
# Directory to leave build distro binaries in.
BINARIES_DIR := binaries
# Directory to use to build distro packages.
BUILD_DIR := build
# dist tarball target name
ifneq ($(wildcard .git/.),)
DIST_TARGET = dist-git
else
DIST_TARGET = dist-cwd
endif
# Paths to exclude from tarballs generated by dist-cwd.
DIST_EXCLUDE := \
--exclude="./$$tarball*" \
--exclude='./cri-resource-manager-*' \
--exclude='./$(PACKAGES_DIR)*' \
--exclude='./$(BUILD_DIR)*'
# Path name transformations for tarballs generated by dist-cwd.
DIST_TRANSFORM := \
--transform='s:^.:cri-resource-manager-$(TAR_VERSION):'
# Determine distro ID, version and package type.
DISTRO_ID := $(shell . /etc/os-release; echo "$${ID:-unknown}")
DISTRO_VERSION := $(shell . /etc/os-release; echo "$${VERSION_ID:-unknown}")
DISTRO_PACKAGE := $(shell echo $(DISTRO_ID) | tr -d ' \t' | \
sed -E 's/.*((fedora)|(suse)).*/rpm/;s/.*((ubuntu)|(debian)).*/deb/')
# Be quiet by default but let folks override it with Q= or V=1 on the command line.
ifneq ($(V),1)
Q := @
endif
# Default target: just build everything.
all: build
#
# Generic targets: build, install, clean, build images.
#
build: $(BUILD_BINS)
build-static:
$(MAKE) STATIC=1 build
install: $(BUILD_BINS) $(foreach dir,$(BUILD_DIRS),install-bin-$(dir)) \
$(foreach dir,$(BUILD_DIRS),install-systemd-$(dir)) \
$(foreach dir,$(BUILD_DIRS),install-sysconf-$(dir)) \
$(foreach dir,$(BUILD_DIRS),install-config-$(dir))
clean: clean-bin clean-spec clean-deb clean-ui-assets clean-html
images: $(foreach dir,$(IMAGE_DIRS),image-$(dir))
images-push: $(foreach dir,$(IMAGE_DIRS),image-push-$(dir))
#
# Rules for building and installing binaries, or building docker images, and cleaning up.
#
KERNEL_INCLUDE_DIRS = /include \
/include/uapi \
/include/generated/uapi \
/arch/x86/include \
/arch/x86/include/uapi \
/arch/x86/include/generated/uapi
KERNEL_INCLUDES := $(strip $(foreach kernel_dir,$(KERNEL_HEADERS_DIR) $(KERNEL_BUILD_DIR),$(addprefix -I,$(wildcard $(addprefix $(kernel_dir),$(KERNEL_INCLUDE_DIRS))))))
libexec/%.o: elf/%.c
$(Q)if [ -z "$(KERNEL_INCLUDES)" ]; then echo "Cannot build $@: invalid KERNEL_HEADERS_DIR=$(KERNEL_HEADERS_DIR)"; exit 1; fi
$(Q)echo "Building $@"
$(Q)mkdir -p libexec
$(Q)$(CLANG) -nostdinc -D __KERNEL__ $(KERNEL_INCLUDES) -O2 -Wall -target bpf -c $< -o $@
bin/%: .static.%.$(STATIC)
$(Q)bin=$(notdir $@); src=./cmd/$$bin; \
echo "Building $$([ -n "$(STATIC)" ] && echo 'static ')$@ (version $(BUILD_VERSION), build $(BUILD_BUILDID))..."; \
mkdir -p bin && \
$(GO_BUILD) $(BUILD_TAGS) $(LDFLAGS) $(GCFLAGS) -o bin/ $$src
.static.%.$(STATIC):
$(Q)if [ ! -f "$@" ]; then \
touch "$@"; \
fi; \
old="$@"; old="$${old%.*}"; \
if [ -n "$(STATIC)" ]; then \
rm -f "$$old."; \
else \
rm -f "$$old.1"; \
fi
.PRECIOUS: $(foreach dir,$(BUILD_DIRS),.static.$(dir).1 .static.$(dir).)
install-bin-%: bin/%
$(Q)bin=$(patsubst install-bin-%,%,$@); dir=cmd/$$bin; \
echo "Installing $$bin in $(DESTDIR)$(BINDIR)..."; \
$(INSTALL) -d $(DESTDIR)$(BINDIR) && \
$(INSTALL) -m 0755 -t $(DESTDIR)$(BINDIR) bin/$$bin; \
install-systemd-%:
$(Q)bin=$(patsubst install-systemd-%,%,$@); dir=cmd/$$bin; \
echo "Installing systemd collateral for $$bin..."; \
$(INSTALL) -d $(DESTDIR)$(UNITDIR) && \
for f in $$(find $$dir -name \*.service -o -name \*.socket); do \
echo " $$f in $(DESTDIR)$(UNITDIR)..."; \
$(INSTALL) -m 0644 -t $(DESTDIR)$(UNITDIR) $$f.in; \
done; \
for f in $$(find $$dir -name \*.service.in -o -name \*.socket.in); do \
echo " $$f in $(DESTDIR)$(UNITDIR)..."; \
df=$${f##*/}; df=$${df%.in}; \
$(INSTALL) -m 0644 -T $$f $(DESTDIR)$(UNITDIR)/$$df; \
sed -E -i -e "s:__DEFAULTDIR__:$(DEFAULTDIR):g" \
-e "s:__BINDIR__:$(BINDIR):g" $(DESTDIR)$(UNITDIR)/$$df; \
done
install-sysconf-%:
$(Q)bin=$(patsubst install-sysconf-%,%,$@); dir=cmd/$$bin; \
echo "Installing sysconf/default collateral for $$bin..."; \
$(INSTALL) -d $(DESTDIR)$(DEFAULTDIR) && \
for f in $$(find $$dir -name \*.sysconf); do \
echo " $$f in $(DESTDIR)$(DEFAULTDIR)..."; \
df=$${f##*/}; df=$${df%.sysconf}; \
$(INSTALL) -m 0644 -T $$f $(DESTDIR)$(DEFAULTDIR)/$$df; \
done
install-config-%:
$(Q)bin=$(patsubst install-config-%,%,$@); dir=cmd/$$bin; \
echo "Installing sample configuration collateral for $$bin..."; \
$(INSTALL) -d $(DESTDIR)$(CONFIGDIR) && \
for f in $$(find $$dir -name \*.cfg.sample); do \
echo " $$f in $(DESTDIR)$(CONFIGDIR)..."; \
df=$${f##*/}; \
$(INSTALL) -m 0644 -T $$f $(DESTDIR)$(CONFIGDIR)/$${df}; \
done
install-minimal-docs:
$(Q)echo "Installing minimal documentation to $(DOCDIR)..."; \
$(INSTALL) -d $(DESTDIR)$(DOCDIR) && \
for f in LICENSE docs/security.md; do \
echo " $$f in $(DESTDIR)$(DOCDIR)..."; \
df=$${f##*/}; \
$(INSTALL) -m 0644 -T $$f $(DESTDIR)$(DOCDIR)/$${df}; \
done
install-licenses:
$(Q)for cmd in $(BUILD_DIRS); do \
install -D LICENSE $(DESTDIR)/licenses/$$cmd/LICENSE && \
go-licenses save ./cmd/$$cmd \
--ignore github.com/intel/cri-resource-manager \
--save_path $(DESTDIR)/licenses/$$cmd/go-licenses; \
done
clean-bin: $(foreach dir,$(BUILD_DIRS),clean-$(dir))
$(Q)rm -f .static.*
clean-%:
$(Q)bin=$(patsubst clean-%,%,$@); src=cmd/$$bin; \
echo "Cleaning up $$bin..."; \
rm -f bin/$$bin
clean-gen:
$(Q)rm -f $(GEN_TARGETS)
image-%:
$(Q)bin=$(patsubst image-%,%,$@); \
$(DOCKER) build . -f "cmd/$$bin/Dockerfile" \
--build-arg GO_VERSION=$(GO_VERSION) \
--build-arg GOLICENSES_VERSION=$(GOLICENSES_VERSION) \
-t $(IMAGE_REPO)$$bin:$(IMAGE_VERSION)
image-push-%:
$(Q)bin=$(patsubst image-push-%,%,$@); \
if [ -z "$(IMAGE_REPO)" ]; then echo "ERROR: no IMAGE_REPO specified"; exit 1; fi; \
$(DOCKER) push $(IMAGE_REPO)$$bin:$(IMAGE_VERSION)
#
# Rules for format checking, various code quality and complexity checks and measures.
#
format:
$(Q)report=`$(GO_FMT) -s -d -w $$(find cmd pkg test/functional -name \*.go)`; \
if [ -n "$$report" ]; then \
echo "$$report"; \
exit 1; \
fi
vet:
$(Q)$(GO_VET) $(shell $(GO_LIST_MODULES))
cyclomatic-check:
$(Q)report=`$(GO_CYCLO) -over 15 cmd pkg`; \
if [ -n "$$report" ]; then \
echo "Complexity is over 15 in"; \
echo "$$report"; \
exit 1; \
fi
lint:
$(Q)rc=0; \
for f in $$(find -name \*.go | grep -v \.\/vendor); do \
$(GO_LINT) -set_exit_status $$f || rc=1; \
done; \
exit $$rc
golangci-lint:
$(Q)$(GO_CILINT) run $(GO_CILINT_RUNFLAGS) $(GO_CILINT_CHECKERS)
shellcheck:
$(Q)for f in $$(git grep -n '^#!/bin/.*sh *' | grep ':1:#!' | sed 's/:1:.*//'); do \
echo "shellchecking $$f..."; \
$(SHELLCHECK) $$f; \
done
#
# Rules for running unit/module tests.
#
test: test-setup test-run test-cleanup
race-test racetest: test-setup racetest-run test-cleanup
test-setup:
$(Q)for i in $$(find . -name $(TEST_SETUP)); do \
echo "+ Running test setup $$i..."; \
(cd $${i%/*}; \
if [ -x "$(TEST_SETUP)" ]; then \
./$(TEST_SETUP); \
fi); \
done
test-cleanup:
$(Q)for i in $$(find . -name $(TEST_CLEANUP)); do \
echo "- Running test cleanup $$i..."; \
(cd $${i%/*}; \
if [ -x "$(TEST_CLEANUP)" ]; then \
./$(TEST_CLEANUP); \
fi); \
done
test-run:
ifndef WHAT
$(Q)$(GO_TEST) -race -coverprofile=coverage.txt -covermode=atomic \
$(shell $(GO_LIST_MODULES))
else
$(Q)if [ -n '$(TESTS)' ]; then \
run="-run $(TESTS)"; \
fi; \
cd $(WHAT) && \
$(GO_TEST) $$run -v -cover -coverprofile cover.out || rc=1; \
$(GO_CMD) tool cover -html=cover.out -o coverage.html; \
rm cover.out; \
echo "Coverage report: file://$$(realpath coverage.html)"; \
exit $$rc
endif
racetest-run:
ifndef WHAT
$(Q)$(GO_TEST) -race -coverprofile=coverage.txt -covermode=atomic \
$(shell $(GO_LIST_MODULES))
else
$(Q)cd $(WHAT) && \
$(GO_TEST) -race -coverprofile=cover.out -covermode=atomic || rc=1; \
$(GO_CMD) tool cover -html=cover.out -o coverage.html; \
rm cover.out; \
echo "Coverage report: file://$$(realpath coverage.html)"; \
exit $$rc
endif
release-tests: e2e-tests
e2e-tests: build-static
$(Q)tests="$(if $(E2E_TESTS),$(E2E_TESTS),test/e2e/policies.test-suite)"; \
$(E2E_RUN) $$tests; \
if [ "$$?" != "0" ]; then \
echo "You drop into interactive mode upon failures if you run e2e tests as"; \
echo " on_verify_fail=interactive $(E2E_RUN) $$tests"; \
exit 1; \
fi
packaging-tests: cross-packages
$(Q)cleanup=1 omit_agent=1 $(E2E_RUN) test/e2e/packages.test-suite
#
# Rules for building distro packages.
#
ifneq ($(DISTRO_ID),fedora)
packages: cross-$(DISTRO_PACKAGE).$(DISTRO_ID)-$(DISTRO_VERSION)
else
packages: cross-$(DISTRO_PACKAGE).$(DISTRO_ID)
endif
cross-packages: cross-rpm cross-deb cross-tar
cross-rpm: $(foreach d,$(SUPPORTED_RPM_DISTROS),cross-rpm.$(d))
cross-deb: $(foreach d,$(SUPPORTED_DEB_DISTROS),cross-deb.$(d))
cross-bin: $(foreach d,$(SUPPORTED_RPM_DISTROS),cross-bin.$(d)) \
$(foreach d,$(SUPPORTED_DEB_DISTROS),cross-bin.$(d))
#
# Rules for building dist-tarballs, rpm, and deb packages.
#
dist: $(DIST_TARGET)
dist-git:
$(Q)echo "Using git to create dist tarball $(TAR_VERSION) from $(BUILD_BUILDID)..."; \
tardir=cri-resource-manager-$(TAR_VERSION) && \
tarball=cri-resource-manager-$(TAR_VERSION).tar && \
git archive --format=tar --prefix=$$tardir/ HEAD > $$tarball && \
mkdir -p $$tardir && \
echo $(BUILD_VERSION) > $$tardir/version && \
echo $(BUILD_BUILDID) > $$tardir/buildid && \
$(TAR) -uf $$tarball $$tardir && \
rm -f $$tarball.* && \
$(GZIP) $$tarball && \
rm -fr $$tardir
dist-cwd:
$(Q)echo "Using tar to create dist tarball $(TAR_VERSION) from $$(pwd)..."; \
tardir=cri-resource-manager-$(TAR_VERSION) && \
tarball=cri-resource-manager-$(TAR_VERSION).tar && \
$(TAR) $(DIST_EXCLUDE) $(DIST_TRANSFORM) -cvf - . > $$tarball && \
mkdir -p $$tardir && \
echo $(BUILD_VERSION) > $$tardir/version && \
echo $(BUILD_BUILDID) > $$tardir/buildid && \
$(TAR_UPDATE) $$tarball $$tardir && \
rm -f $$tarball.* && \
$(GZIP) $$tarball && \
rm -fr $$tardir
vendored-dist: dist
$(Q)echo "Creating vendored dist tarball $(TAR_VERSION)..."; \
tardir=cri-resource-manager-$(TAR_VERSION) && \
tarball=cri-resource-manager-$(TAR_VERSION).tar && \
cp $$tarball$(GZEXT) vendored-$$tarball$(GZEXT) && \
$(GZIP_DC) vendored-$$tarball$(GZEXT) | tar -xf - && \
go mod vendor -v && \
mkdir -p $$tardir && \
mv vendor $$tardir && \
rm -f vendored-$$tarball* && \
$(TAR) -cf vendored-$$tarball $$tardir && \
$(GZIP) vendored-$$tarball && \
rm -fr $$tardir
binary-dist:
$(Q)tarball=$(OUTPUT)cri-resource-manager-$(TAR_VERSION).$$(uname -m).tar; \
echo "Creating binary dist tarball $$tarball..."; \
tardir=binary-dist; \
rm -fr $$tarball* $$tardir && \
$(MAKE) DESTDIR=$$tardir \
BUILD_DIRS=cri-resmgr \
PREFIX=/opt/intel \
DEFAULTDIR=/etc/default \
UNITDIR=$(SYSCONFDIR)/systemd/system install install-minimal-docs && \
$(MAKE) DESTDIR=$$tardir/opt/intel/ install-licenses && \
$(TAR) -C $$tardir -cf $$tarball . && \
$(GZIP) $$tarball && \
rm -fr $$tardir
spec: clean-spec $(SPEC_FILES)
%.spec:
$(Q)echo "Generating RPM spec file $@..."; \
cp [email protected] $@ && \
sed -E -i -e "s/__VERSION__/$(RPM_VERSION)/g" \
-e "s/__TARVERSION__/$(TAR_VERSION)/g" \
-e "s/__BUILDID__/$(BUILD_BUILDID)/g" $@
clean-spec:
$(Q)rm -f $(SPEC_FILES)
cross-rpm.%: docker/cross-build/% clean-spec spec dist
$(Q)distro=$(patsubst cross-rpm.%,%,$@); \
builddir=$(BUILD_DIR)/docker/$$distro; \
outdir=$(PACKAGES_DIR)/$$distro; \
echo "Docker cross-building $$distro packages..."; \
mkdir -p $(PACKAGES_DIR)/$$distro && \
rm -fr $$builddir && mkdir -p $$builddir/{input,build} && \
cp cri-resource-manager-$(TAR_VERSION).tar$(GZEXT) $$builddir/input && \
cp packaging/rpm/cri-resource-manager.spec $$builddir/input && \
$(DOCKER) run --rm $(DOCKER_OPTIONS) --user $$USER \
--env USER_NAME="$(USER_NAME)" --env USER_EMAIL=$(USER_EMAIL) \
-v $$(pwd)/$$builddir:/build \
-v $$(pwd)/$$outdir:/output \
-v "`go env GOMODCACHE`:/home/$$USER/go/pkg/mod" \
$$distro-build /bin/bash -c '$(DOCKER_RPM_BUILD)' && \
rm -fr $$builddir && \
install -D -m644 $$outdir/cri-resource-manager-$(RPM_VERSION)-0.x86_64.rpm $(PACKAGES_DIR)/release-assets/cri-resource-manager-$(RPM_VERSION)-0.$$distro.x86_64.rpm
src.rpm source-rpm: spec dist
mkdir -p ~/rpmbuild/{SOURCES,SPECS} && \
cp packaging/rpm/cri-resource-manager.spec ~/rpmbuild/SPECS && \
cp cri-resource-manager-$(TAR_VERSION).tar$(GZEXT) ~/rpmbuild/SOURCES && \
rpmbuild -bs ~/rpmbuild/SPECS/cri-resource-manager.spec
rpm: source-rpm
rpmbuild -bb ~/rpmbuild/SPECS/cri-resource-manager.spec
debian/%: packaging/deb.in/%
$(Q)echo "Generating debian packaging file $@..."; \
tardir=cri-resource-manager-$(TAR_VERSION) && \
tarball=cri-resource-manager-$(TAR_VERSION).tar && \
mkdir -p debian; \
cp $< $@ && \
sed -E -i -e "s/__PACKAGE__/cri-resource-manager/g" \
-e "s/__TARBALL__/$$tarball/g" \
-e "s/__VERSION__/$(DEB_VERSION)/g" \
-e "s/__AUTHOR__/$(USER_NAME)/g" \
-e "s/__EMAIL__/$(USER_EMAIL)/g" \
-e "s/__DATE__/$(BUILD_DATE)/g" $@
clean-deb:
$(Q)rm -fr debian
cross-deb.%: docker/cross-build/% \
clean-deb debian/changelog debian/control debian/rules debian/compat dist
$(Q)distro=$(patsubst cross-deb.%,%,$@); \
echo "Docker cross-building $$distro packages..."; \
builddir=$(BUILD_DIR)/docker/$$distro; \
outdir=$(PACKAGES_DIR)/$$distro; \
mkdir -p $(PACKAGES_DIR)/$$distro && \
rm -fr $$builddir && mkdir -p $$builddir/{input,build} && \
cp cri-resource-manager-$(TAR_VERSION).tar$(GZEXT) $$builddir/input && \
cp -r debian $$builddir/input && \
$(DOCKER) run --rm $(DOCKER_OPTIONS) --user $$USER \
--env USER_NAME="$(USER_NAME)" --env USER_EMAIL=$(USER_EMAIL) \
-v $$(pwd)/$$builddir:/build \
-v $$(pwd)/$$outdir:/output \
-v "`go env GOMODCACHE`:/home/$$USER/go/pkg/mod" \
$$distro-build /bin/bash -c '$(DOCKER_DEB_BUILD)' && \
rm -fr $$builddir && \
install -D -m644 $$outdir/cri-resource-manager_$(DEB_VERSION)_amd64.deb $(PACKAGES_DIR)/release-assets/cri-resource-manager_$(DEB_VERSION)_$${distro}_amd64.deb
deb: debian/changelog debian/control debian/rules debian/compat dist
dpkg-buildpackage -uc
cross-bin.%: docker/cross-build/% dist
$(Q)distro=$(patsubst cross-bin.%,%,$@); \
echo "Docker cross-building $$distro binaries..."; \
builddir=$(BUILD_DIR)/docker/$$distro; \
outdir=$(BINARIES_DIR)/$$distro; \
mkdir -p $(BINARIES_DIR)/$$distro && \
rm -fr $$builddir && mkdir -p $$builddir/{input,build} && \
cp cri-resource-manager-$(TAR_VERSION).tar$(GZEXT) $$builddir/input && \
$(DOCKER) run --rm $(DOCKER_OPTIONS) --user $$USER \
--env USER_NAME="$(USER_NAME)" --env USER_EMAIL=$(USER_EMAIL) \
-v $$(pwd)/$$builddir:/build \
-v $$(pwd)/$$outdir:/output \
-v "`go env GOMODCACHE`:/home/$$USER/go/pkg/mod" \
$$distro-build /bin/bash -c '$(DOCKER_BIN_BUILD)' && \
rm -fr $$builddir
cross-tar cross-tarball: dist docker/cross-build/fedora
$(Q)distro=tarball; \
builddir=$(BUILD_DIR)/docker/$$distro; \
outdir=$(PACKAGES_DIR)/$$distro; \
echo "Docker cross-building $$distro packages..."; \
mkdir -p $$outdir && \
rm -fr $$builddir && mkdir -p $$builddir/{input,build} && \
cp cri-resource-manager-$(TAR_VERSION).tar$(GZEXT) $$builddir/input && \
$(DOCKER) run --rm $(DOCKER_OPTIONS) --user $$USER \
--env USER_NAME="$(USER_NAME)" --env USER_EMAIL=$(USER_EMAIL) \
-v $$(pwd)/$$builddir:/build \
-v $$(pwd)/$$outdir:/output \
-v "`go env GOMODCACHE`:/home/$$USER/go/pkg/mod" \
fedora-build /bin/bash -c '$(DOCKER_TAR_BUILD)' && \
rm -fr $$builddir && \
install -D -m644 -t $(PACKAGES_DIR)/release-assets $$outdir/cri-resource-manager-$(TAR_VERSION).x86_64.tar.gz
# Build a docker image (for distro cross-building).
docker/cross-build/%: dockerfiles/cross-build/Dockerfile.%
$(Q)distro=$(patsubst docker/cross-build/%,%,$@) && \
echo "Building cross-build docker image for $$distro..." && \
img=$${distro}-build && $(DOCKER) rm $$distro-build || : && \
scripts/build/docker-build-image $$distro-build \
$(DOCKER_PULL) \
--build-arg GO_VERSION=$(GO_VERSION) \
--build-arg GOLICENSES_VERSION=$(GOLICENSES_VERSION) \
$(DOCKER_OPTIONS)
# Rule for recompiling a changed protobuf.
%.pb.go: %.proto
$(Q)if [ -n "$(PROTOC)" -o ! -e "$@" ]; then \
echo "Generating go code ($@) for updated protobuf $<..."; \
$(PROTO_COMPILE) $<; \
else \
echo "WARNING: no protoc found, compiling with OUTDATED $@..."; \
fi
# Rule for installing in-repo git hooks.
install-git-hooks:
$(Q)if [ -d .git -a ! -e .git-hooks.redirected ]; then \
echo -n "Redirecting git hooks to .githooks..."; \
git config core.hookspath .githooks && \
touch .git-hooks.redirected && \
echo "done."; \
fi
# Rules for installing protoc and related utilities.
install-protoc:
$(Q)./scripts/hack/install-protobuf
install-protoc-gen-go:
$(Q)$(GO_INSTALL) google.golang.org/protobuf/cmd/[email protected]
install-protoc-gen-go-grpc:
$(Q)$(GO_INSTALL) google.golang.org/grpc/cmd/[email protected]
install-protoc-tools: install-protoc install-protoc-gen-go install-protoc-gen-go-grpc
#
# go dependencies for our binaries (careful with that axe, Eugene...)
#
bin/cri-resmgr: $(wildcard cmd/cri-resmgr/*.go) $(UI_ASSETS) $(GEN_TARGETS) \
$(shell for dir in \
$(shell go list -f '{{ join .Deps "\n"}}' ./cmd/cri-resmgr/... | \
grep cri-resource-manager/pkg/ | \
sed 's#github.com/intel/cri-resource-manager/##g'); do \
find $$dir -name \*.go; \
done | sort | uniq)
bin/cri-resmgr-agent: $(wildcard cmd/cri-resmgr-agent/*.go) \
$(shell for dir in \
$(shell go list -f '{{ join .Deps "\n"}}' ./cmd/cri-resmgr-agent/... | \
grep cri-resource-manager/pkg/ | \
sed 's#github.com/intel/cri-resource-manager/##g'); do \
find $$dir -name \*.go; \
done | sort | uniq)
bin/webhook: $(wildcard cmd/cri-resmgr-webhook/*.go) \
$(shell for dir in \
$(shell go list -f '{{ join .Deps "\n"}}' ./cmd/cri-resmgr-webhook/... | \
grep cri-resource-manager/pkg/ | \
sed 's#github.com/intel/cri-resource-manager/##g'); do \
find $$dir -name \*.go; \
done | sort | uniq)
#
# rules to run go generators
#
clean-ui-assets:
$(Q)echo "Cleaning up generated UI assets..."; \
for i in $(UI_ASSETS); do \
echo " - $$i"; \
rm -f $$i; \
done
%_gendata.go::
$(Q)echo "Generating $@..."; \
cd $(dir $@) && \
$(GO_GEN) || exit 1 && \
cd - > /dev/null
pkg/sysfs/sst_types%.go: pkg/sysfs/_sst_types%.go pkg/sysfs/gen_sst_types.sh
$(Q)cd $(@D) && \
KERNEL_SRC_DIR=$(KERNEL_SRC_DIR) $(GO_GEN)
#
# API generation
#
# unconditionally generate all apis
generate-apis: generate-resmgr-api
# unconditionally generate (external) resmgr api
generate-resmgr-api:
$(Q)$(call generate-api,resmgr,$(RESMGR_API_VERSION))
# automatic update of generated code for resource-manager external api
pkg/apis/resmgr/$(RESMGR_API_VERSION)/zz_generated.deepcopy.go: \
pkg/apis/resmgr/$(RESMGR_API_VERSION)/types.go
$(Q)$(call generate-api,resmgr,$(RESMGR_API_VERSION))
# macro to generate code for api $(1), version $(2)
generate-api = \
echo "Generating '$(1)' api, version $(2)..." && \
KUBERNETES_VERSION=$(KUBERNETES_VERSION) \
./scripts/code-generator/generate-groups.sh all \
github.com/intel/cri-resource-manager/pkg/apis/$(1)/generated \
github.com/intel/cri-resource-manager/pkg/apis $(1):$(2) \
--output-base $(shell pwd)/generate && \
cp -r generate/github.com/intel/cri-resource-manager/pkg/apis/$(1) pkg/apis && \
rm -fr generate/github.com/intel/cri-resource-manager/pkg/apis/$(1)
#
# dependencies for UI assets baked in using vfsgendev (can't come up with a working pattern rule)
#
pkg/cri/resource-manager/visualizer/bubbles/assets_gendata.go:: \
$(wildcard pkg/cri/resource-manager/visualizer/bubbles/assets/*.html) \
$(wildcard pkg/cri/resource-manager/visualizer/bubbles/assets/js/*.js) \
$(wildcard pkg/cri/resource-manager/visualizer/bubbles/assets/css/*.css)
# phony targets
.PHONY: all build install clean test images images-push release-tests e2e-tests \
format vet cyclomatic-check lint golangci-lint \
cross-packages cross-rpm cross-deb \
#
# Rules for documentation
#
vhtml: _work/venv/.stamp
. _work/venv/bin/activate && \
make -C docs html && \
cp -r docs/_build .
html: clean-html
$(Q)BUILD_VERSION=$(BUILD_VERSION) \
$(SPHINXBUILD) -c docs . "$(SITE_BUILDDIR)" $(SPHINXOPTS)
cp docs/index.html "$(SITE_BUILDDIR)"
for d in $$(find docs -name figures -type d); do \
mkdir -p $(SITE_BUILDDIR)/$$d && cp $$d/* $(SITE_BUILDDIR)/$$d; \
done
serve-html: html
$(Q)cd $(SITE_BUILDDIR) && python3 -m http.server 8081
clean-html:
rm -rf $(SITE_BUILDDIR)
site-build: .$(DOCKER_SITE_BUILDER_IMAGE).image.stamp
$(Q)$(DOCKER_SITE_CMD) $(DOCKER_SITE_BUILDER_IMAGE) make html
site-serve: .$(DOCKER_SITE_BUILDER_IMAGE).image.stamp
$(Q)$(DOCKER_SITE_CMD) -it $(DOCKER_SITE_BUILDER_IMAGE) make serve-html
.$(DOCKER_SITE_BUILDER_IMAGE).image.stamp: docs/Dockerfile docs/requirements.txt
docker build -t $(DOCKER_SITE_BUILDER_IMAGE) docs
touch $@
# Set up a Python3 environment with the necessary tools for document creation.
_work/venv/.stamp: docs/requirements.txt
rm -rf ${@D}
python3 -m venv ${@D}
. ${@D}/bin/activate && pip install -r $<
touch $@