-
Notifications
You must be signed in to change notification settings - Fork 502
/
Makefile
147 lines (118 loc) · 4.04 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
# Copyright 2019 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# If you update this file, please follow
# https://suva.sh/posts/well-documented-makefiles
.DEFAULT_GOAL:=help
SHELL:=/usr/bin/env bash
COLOR:=\\033[36m
NOCOLOR:=\\033[0m
HELP_WIDTH:=20
.PHONY: help
help: ## Display this help
@awk \
-v "col=${COLOR}" -v "nocol=${NOCOLOR}" \
' \
BEGIN { \
FS = ":.*##" ; \
printf "\nUsage:\n make %s<target>%s\n", col, nocol \
} \
/^[a-zA-Z_-]+:.*?##/ { \
printf " %s%-${HELP_WIDTH}s%s %s\n", col, $$1, nocol, $$2 \
} \
/^##@/ { \
printf "\n%s\n", substr($$0, 5) \
} \
' $(MAKEFILE_LIST)
##@ Verify:
.PHONY: verify
verify: release-tools verify-boilerplate verify-build verify-dependencies verify-go-mod verify-package-specs ## Runs verification scripts to ensure correct execution
.PHONY: verify-boilerplate
verify-boilerplate: ## Runs the file header check
./hack/verify-boilerplate.sh
.PHONY: verify-build
verify-build: ## Builds the project for a chosen set of platforms
./hack/verify-build.sh
.PHONY: verify-dependencies
verify-dependencies: ## Runs zeitgeist to verify dependency versions
./hack/verify-dependencies.sh
.PHONY: verify-go-mod
verify-go-mod: ## Runs the go module linter
./hack/verify-go-mod.sh
.PHONY: verify-package-specs
verify-package-specs: ## Runs the rpmlint on package specs
./hack/verify-package-specs.sh
##@ Tests:
.PHONY: test
test: test-go-unit test-sh ## Runs unit tests to ensure correct execution
.PHONY: test-go-unit
test-go-unit: ## Runs golang unit tests
./hack/test-go.sh
.PHONY: test-go-integration
test-go-integration: ## Runs golang integration tests
./hack/test-go-integration.sh
.PHONY: test-sh
test-sh: ## Runs all shellscript tests
./hack/test-sh.sh
##@ Tools:
RELEASE_TOOLS ?=
.PHONY: release-tools
release-tools: ## Compiles a set of release tools, specified by $RELEASE_TOOLS
./compile-release-tools $(RELEASE_TOOLS)
##@ Images:
images := k8s-cloud-builder
.PHONY: update-images
update-images: $(addprefix image-,$(images)) ## Update all images in ./images/
image-%:
$(eval img := $(subst image-,,$@))
gcloud builds submit --config './images/$(img)/cloudbuild.yaml' './images/$(img)'
RUNTIME ?= docker
LOCALIMAGE_NAME := k8s-cloud-builder
.PHONY: local-image-build
local-image-build: ## Build a local image to use the tools of this repository on non Debian/Ubuntu/Fedora distributions
$(RUNTIME) build \
-f images/k8s-cloud-builder/Dockerfile \
-t $(LOCALIMAGE_NAME)
.PHONY: local-image-run
local-image-run: ## Run a locally build image to use the tools of this repository on non Debian/Ubuntu/Fedora distributions
$(RUNTIME) run -it \
-v $$HOME/.config/gcloud:/root/.config/gcloud \
-v $(shell pwd):/go/src/k8s.io/release \
-w /go/src/k8s.io/release \
$(LOCALIMAGE_NAME) bash
##@ Dependencies:
.SILENT: update-deps
.PHONY: update-deps
update-deps: update-deps-go ## Update all dependencies for this repo
echo -e "${COLOR}Commit/PR the following changes:${NOCOLOR}"
git status --short
.SILENT: update-deps-go
.PHONY: update-deps-go
update-deps-go: GO111MODULE=on
update-deps-go: ## Update all golang dependencies for this repo
go get -u -t ./...
go mod tidy
go mod verify
$(MAKE) test-go-unit
./hack/update-all.sh
.SILENT: update-mocks
.PHONY: update-mocks
update-mocks: ## Update all generated mocks
go generate ./...
for f in $(shell find . -name fake_*.go); do \
if ! grep -q "^`cat hack/boilerplate/boilerplate.generatego.txt`" $$f; then \
cp hack/boilerplate/boilerplate.generatego.txt tmp ;\
cat $$f >> tmp ;\
mv tmp $$f ;\
fi \
done