forked from kubernetes/release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
158 lines (118 loc) · 4.37 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
# 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
##@ Package
.PHONY: verify-published-debs verify-published-rpms
verify-published-debs: ## Ensure debs have been published
./hack/packages/verify-published.sh debs
verify-published-rpms: ## Ensure rpms have been published
./hack/packages/verify-published.sh rpms
##@ Verify
.PHONY: verify verify-boilerplate verify-build verify-dependencies verify-golangci-lint verify-go-mod verify-shellcheck
# TODO: Uncomment verify-shellcheck once we finish shellchecking the repo.
# ref: https://github.com/kubernetes/release/issues/726
verify: release-tools verify-boilerplate verify-build verify-dependencies verify-golangci-lint verify-go-mod #verify-shellcheck ## Runs verification scripts to ensure correct execution
verify-boilerplate: ## Runs the file header check
./hack/verify-boilerplate.sh
verify-build: ## Builds the project for a chosen set of platforms
./hack/verify-build.sh
verify-dependencies: ## Runs zeitgeist to verify dependency versions
./hack/verify-dependencies.sh
verify-go-mod: ## Runs the go module linter
./hack/verify-go-mod.sh
verify-golangci-lint: ## Runs all golang linters
./hack/verify-golangci-lint.sh
verify-shellcheck: ## Runs shellcheck
./hack/verify-shellcheck.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
.PHONY: update-images
images := \
k8s-cloud-builder
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 update-deps-go update-mocks
.PHONY: update-deps update-deps-go update-mocks
update-deps: update-deps-go ## Update all dependencies for this repo
echo -e "${COLOR}Commit/PR the following changes:${NOCOLOR}"
git status --short
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
update-mocks: ## Update all generated mocks
go generate ./...
for f in $(shell find . -name fake_*.go); do \
cp hack/boilerplate/boilerplate.generatego.txt tmp ;\
cat $$f >> tmp ;\
mv tmp $$f ;\
done
##@ Helpers
.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%-15s%s %s\n", col, $$1, nocol, $$2 \
} \
/^##@/ { \
printf "\n%s%s%s\n", col, substr($$0, 5), nocol \
} \
' $(MAKEFILE_LIST)