forked from kubernetes/release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
146 lines (109 loc) · 3.77 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
# 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-shellcheck
# TODO: Uncomment verify-shellcheck once we finish shellchecking the repo.
# ref: https://github.com/kubernetes/release/issues/726
verify: #verify-shellcheck ## Runs verification scripts to ensure correct execution
@echo consider make verify-bazel as well
verify-shellcheck: ## Runs shellcheck
./hack/verify-shellcheck.sh
verify-bazel:
bazel test //...
##@ Tests
.PHONY: test
test: test-go test-sh ## Runs unit tests to ensure correct execution
.PHONY: test-go
test-go: ## Runs all golang tests
./hack/test-go.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)
##@ GCB Jobs
.PHONY: stage-ci
stage-ci: ## Compiles/installs krel and submits a MOCK streamed stage build to GCB (used for Prow)
RELEASE_TOOLS="krel" $(MAKE) release-tools
krel gcbmgr --stage \
--branch master \
--build-version=$$(curl -Ls https://dl.k8s.io/ci/latest.txt) \
--stream
##@ 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
.PHONY: update-deps update-deps-go
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
./hack/update-all.sh
##@ 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)