-
Notifications
You must be signed in to change notification settings - Fork 17
/
Makefile
154 lines (117 loc) · 3.94 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
SHELL=/bin/bash
export KUBEVIRT_VERSION = main
export KUBEVIRT_TAG = main
# Use the COMMON_INSTANCETYPES_CRI env variable to control if the following targets are executed within a container.
# Supported runtimes are docker and podman. By default targets run directly on the host.
export COMMON_INSTANCETYPES_IMAGE = quay.io/kubevirtci/common-instancetypes-builder
export COMMON_INSTANCETYPES_IMAGE_TAG = v20241017-30aa54a
# Containerdisk image and tag to use for Validation OS functional tests
export VALIDATION_OS_IMAGE = quay.io/kubevirtci/validation-os-container-disk
export VALIDATION_OS_IMAGE_TAG = 22621.1702.230501-1115
# Packages of golang tools vendored in ./tools
# Version to install is defined in ./tools/go.mod
KUSTOMIZE_PACKAGE ?= sigs.k8s.io/kustomize/kustomize/v5
KUBECONFORM_PACKAGE ?= github.com/yannh/kubeconform/cmd/kubeconform
YQ_PACKAGE ?= github.com/mikefarah/yq/v4
# Version of golangci-lint to install
GOLANGCI_LINT_VERSION ?= v1.55.2
# Kubeconfig default value
KUBECONFIG ?= ~/.kube/config
.PHONY: all
all: lint validate readme test-lint test
.PHONY: build_image
build_image:
scripts/build_image.sh
.PHONY: push_image
push_image:
scripts/push_image.sh
.PHONY: lint
lint: generate
scripts/cri.sh "scripts/lint.sh"
.PHONY: generate
generate: kustomize yq
scripts/generate.sh
.PHONY: deploy
deploy: lint
scripts/deploy-kubevirt-and-cdi.sh && KUBECTL=kubectl BASEDIR=$(CURDIR) scripts/sync.sh
.PHONY: functest
functest:
cd tests && KUBECONFIG=$(KUBECONFIG) go test -v -timeout 0 ./functests/... -ginkgo.v -ginkgo.randomize-all $(FUNCTEST_EXTRA_ARGS)
.PHONY: validate
validate: generate schema kubeconform
scripts/validate.sh
.PHONY: schema
schema:
scripts/cri.sh "scripts/schema.sh"
.PHONY: readme
readme: generate
scripts/readme.sh
.PHONY: check-tree-clean
check-tree-clean: readme test-fmt
scripts/check-tree-clean.sh
.PHONY: cluster-up
cluster-up:
scripts/kubevirtci.sh up
.PHONY: cluster-down
cluster-down:
scripts/kubevirtci.sh down
.PHONY: cluster-sync
cluster-sync: kustomize
scripts/kubevirtci.sh sync
.PHONY: cluster-sync-containerdisks
cluster-sync-containerdisks:
scripts/kubevirtci.sh sync-containerdisks
.PHONY: cluster-functest
cluster-functest:
cd tests && KUBECONFIG=$$(../scripts/kubevirtci.sh kubeconfig) go test -v -timeout 0 ./functests/... -ginkgo.v -ginkgo.randomize-all $(FUNCTEST_EXTRA_ARGS)
.PHONY: kubevirt-up
kubevirt-up:
scripts/kubevirt.sh up
.PHONY: kubevirt-down
kubevirt-down:
scripts/kubevirt.sh down
.PHONY: kubevirt-sync
kubevirt-sync: kustomize
scripts/kubevirt.sh sync
.PHONY: kubevirt-sync-containerdisks
kubevirt-sync-containerdisks:
scripts/kubevirt.sh sync-containerdisks
.PHONY: kubevirt-functest
kubevirt-functest:
cd tests && KUBECONFIG=$$(../scripts/kubevirt.sh kubeconfig) go test -v -timeout 0 ./functests/... -ginkgo.v -ginkgo.randomize-all $(FUNCTEST_EXTRA_ARGS)
.PHONY: test
test: generate
cd tests && go test -v -timeout 0 ./unittests/...
.PHONY: test-fmt
test-fmt:
cd tests && go fmt ./...
.PHONY: test-vet
test-vet:
cd tests && go vet ./...
.PHONY: test-lint
test-lint: golangci-lint test-vet
cd tests && golangci-lint run --timeout 5m
.PHONY: clean
clean:
rm -rf _bin _build _cluster-up _kubevirt _schemas
# Location to install local binaries to
LOCALBIN ?= $(PWD)/_bin
$(LOCALBIN):
mkdir -p $(LOCALBIN)
export PATH := $(LOCALBIN):$(PATH)
KUSTOMIZE ?= $(LOCALBIN)/kustomize
kustomize: $(KUSTOMIZE)
$(KUSTOMIZE): $(LOCALBIN)
cd tools && GOBIN=$(LOCALBIN) go install $(KUSTOMIZE_PACKAGE)
KUBECONFORM ?= $(LOCALBIN)/kubeconform
kubeconform: $(KUBECONFORM)
$(KUBECONFORM): $(LOCALBIN)
cd tools && GOBIN=$(LOCALBIN) go install $(KUBECONFORM_PACKAGE)
YQ ?= $(LOCALBIN)/yq
yq: $(YQ)
$(YQ): $(LOCALBIN)
cd tools && GOBIN=$(LOCALBIN) go install $(YQ_PACKAGE)
GOLANGCI_LINT ?= $(LOCALBIN)/golangci-lint
golangci-lint: $(GOLANGCI_LINT)
$(GOLANGCI_LINT): $(LOCALBIN)
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(LOCALBIN) $(GOLANGCI_LINT_VERSION)