-
Notifications
You must be signed in to change notification settings - Fork 16
/
Makefile
122 lines (92 loc) · 2 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
v%:
@echo Checkout to $@
./hack/checkout.sh $@
dependent:
pip3 install yq
./hack/kit.sh
.PHONY: public-source
public-source:
@echo Public Source
./hack/public_source.sh
.PHONY: build-binaries
build-binaries:
@echo Build binaries
./hack/build_binaries.sh
.PHONY: pkg-rpm
pkg-rpm:
./hack/pkg_rpm.sh
.PHONY: pkg-deb
pkg-deb:
./hack/pkg_deb.sh
.PHONY: repos-sync
repos-sync:
./hack/git_sync_repos.sh
.PHONY: build-image
build-image:
@echo Build image
./hack/build_image.sh
.PHONY: image-other
image-other:
./hack/image_other.sh
.PHONY: verify
verify: verify-patch
.PHONY: verify-patch
verify-patch:
./hack/verify_patch.sh
.PHONY: verify-releases
verify-releases:
./hack/verify_releases.sh
.PHONY: verify-patch-format
verify-patch-format:
./hack/verify_patch_format.sh
.PHONY: verify-build
verify-build:
./hack/verify_build.sh
.PHONY: verify-build-client
verify-build-client:
./hack/verify_build_client.sh
.PHONY: verify-build-server
verify-build-server:
./hack/verify_build_server.sh
.PHONY: verify-pkg-rpm-client
verify-pkg-rpm-client:
./hack/verify_pkg_rpm_client.sh
.PHONY: verify-pkg-rpm-server
verify-pkg-rpm-server:
./hack/verify_pkg_rpm_server.sh
.PHONY: verify-pkg-deb-client
verify-pkg-deb-client:
./hack/verify_pkg_deb_client.sh
.PHONY: verify-pkg-deb-server
verify-pkg-deb-server:
./hack/verify_pkg_deb_server.sh
.PHONY: verify-build-image
verify-build-image:
./hack/verify_build_image.sh
.PHONY: gen-verify-workflows
gen-verify-workflows:
./hack/gen_verify_workflows.sh > .github/workflows/verify.yml
.PHONY: push-image
push-image:
./hack/image_tag.sh && ./hack/image_manifest_push.sh
.PHONY: format-all-patch
format-all-patch:
./hack/format_all_patch.sh
.PHONY: test
test:
./hack/test.sh
.PHONY: test-cmd
test-cmd:
./hack/test_cmd.sh
.PHONY: test-integration
test-integration:
./hack/test_integration.sh
.PHONY: test-e2e
test-e2e:
./hack/test_e2e.sh
.PHONY: test-e2e-node
test-e2e-node:
./hack/test_e2e_node.sh
.PHONY: install-etcd
install-etcd:
./hack/install_etcd.sh