forked from shipwright-io/build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
313 lines (257 loc) · 8.73 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
SHELL := /bin/bash
# output directory, where all artifacts will be created and managed
OUTPUT_DIR ?= build/_output
# relative path to controller binary
CONTROLLER = $(OUTPUT_DIR)/bin/shipwright-build-controller
# golang cache directory path
GOCACHE ?= $(shell echo ${PWD})/$(OUTPUT_DIR)/gocache
# golang target architecture
# Check if GO_OS is defined, if not set it to `linux` which is the only supported OS
# this provides flexibility to users to set GO_OS in the future if require
ifeq ($(origin GO_OS), undefined)
GO_OS = "linux"
endif
GO_ARCH ?= $(shell uname -m | sed -e 's/x86_64/amd64/' -e 's/aarch64/arm64/')
# golang global flags
GO_FLAGS ?= -v -mod=vendor -ldflags=-w
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
ifeq (,$(shell go env GOBIN))
GOBIN=$(shell go env GOPATH)/bin
else
GOBIN=$(shell go env GOBIN)
endif
# GINKGO is the path to the ginkgo cli
GINKGO ?= $(shell which ginkgo)
# configure zap based logr
ZAP_FLAGS ?= --zap-log-level=debug --zap-encoder=console
# test namespace name
TEST_NAMESPACE ?= default
# CI: tekton pipelines controller version
TEKTON_VERSION ?= v0.50.5
# E2E test flags
TEST_E2E_FLAGS ?= -r -p --randomize-all -timeout=1h -trace -v
# E2E test service account name to be used for the build runs, can be set to generated to use the generated service account feature
TEST_E2E_SERVICEACCOUNT_NAME ?= pipeline
# E2E test verify Tekton objects
TEST_E2E_VERIFY_TEKTONOBJECTS ?= true
# E2E test timeout multiplier
TEST_E2E_TIMEOUT_MULTIPLIER ?= 1
# test repository to store images build during end-to-end tests
TEST_IMAGE_REPO ?= ghcr.io/shipwright-io/build/build-e2e
# test repository insecure (HTTP or self-signed certificate)
TEST_IMAGE_REPO_INSECURE ?= false
# test container registry secret name
TEST_IMAGE_REPO_SECRET ?=
# test container registry secret, must be defined during runtime
TEST_IMAGE_REPO_DOCKERCONFIGJSON ?=
# enable private git repository tests
TEST_PRIVATE_REPO ?= false
# github private repository url
TEST_PRIVATE_GITHUB ?=
# gitlab private repository url
TEST_PRIVATE_GITLAB ?=
# private repository authentication secret
TEST_SOURCE_SECRET ?=
# default timeout for kubectl and other interactions with external systems
TIMEOUT ?= 30s
# Image settings for building and pushing images
IMAGE_HOST ?= ghcr.io
IMAGE_NAMESPACE ?= shipwright-io/build
TAG ?= latest
# options for generating crds with controller-gen
CONTROLLER_GEN="${GOBIN}/controller-gen"
.EXPORT_ALL_VARIABLES:
default: build
.PHONY: build
build: $(CONTROLLER)
.PHONY: $(CONTROLLER)
$(CONTROLLER):
go build -trimpath $(GO_FLAGS) -o $(CONTROLLER) cmd/shipwright-build-controller/main.go
.PHONY: build-plain
build-plain:
go build -trimpath $(GO_FLAGS) -o $(CONTROLLER) cmd/shipwright-build-controller/main.go
.PHONY: build-image
build-image:
KO_DOCKER_REPO="$(IMAGE_HOST)/$(IMAGE_NAMESPACE)" GOFLAGS="$(GO_FLAGS)" ko publish --base-import-paths ./cmd/shipwright-build-controller
.PHONY: build-image-with-pprof
build-image-with-pprof:
KO_DOCKER_REPO="$(IMAGE_HOST)/$(IMAGE_NAMESPACE)" GOFLAGS="$(GO_FLAGS) -tags=pprof_enabled" ko publish --base-import-paths --tags=pprof ./cmd/shipwright-build-controller
.PHONY: release
release:
hack/release.sh
.PHONY: generate
generate:
hack/update-codegen.sh
hack/generate-fakes.sh
hack/generate-copyright.sh
hack/install-controller-gen.sh
"$(CONTROLLER_GEN)" crd rbac:roleName=manager-role webhook paths="./..." output:crd:dir=deploy/crds
hack/patch-crds-with-conversion.sh
.PHONY: verify-generate
verify-generate: generate
@hack/verify-generate.sh
.PHONY: ginkgo
ginkgo:
ifeq (, $(GINKGO))
ifeq (, $(shell which ginkgo))
@{ \
set -e ;\
go install github.com/onsi/ginkgo/v2/ginkgo ;\
}
override GINKGO=$(GOBIN)/ginkgo
else
override GINKGO=$(shell which ginkgo)
endif
endif
.PHONY: gocov
gocov:
ifeq (, $(shell which gocov))
@{ \
set -e ;\
GOCOV_GEN_TMP_DIR=$$(mktemp -d) ;\
cd $$GOCOV_GEN_TMP_DIR ;\
go mod init tmp ;\
go install github.com/axw/gocov/gocov@v1.0.0 ;\
rm -rf $$GOCOV_GEN_TMP_DIR ;\
}
GOCOV=$(GOBIN)/gocov
else
GOCOV=$(shell which gocov)
endif
.PHONY: install-counterfeiter
install-counterfeiter:
hack/install-counterfeiter.sh
.PHONY: install-spruce
install-spruce:
hack/install-spruce.sh
.PHONY: install-trivy
install-trivy:
hack/install-trivy.sh
# Install golangci-lint via: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
.PHONY: sanity-check
sanity-check:
golangci-lint run --timeout=10m
# https://github.com/shipwright-io/build/issues/123
.PHONY: test
test: test-unit
.PHONY: test-unit
test-unit:
@rm -rf build/coverage
@mkdir -p build/coverage
go test \
./cmd/... \
./pkg/... \
-coverprofile=unit.coverprofile \
-outputdir=build/coverage \
-race \
-v
.PHONY: test-unit-coverage
test-unit-coverage: test-unit gocov
echo "Combining coverage profiles"
cat build/coverage/*.coverprofile | sed -E 's/([0-9])github.com/\1\ngithub.com/g' | sed -E 's/([0-9])mode: atomic/\1/g' > build/coverage/coverprofile
$(GOCOV) convert build/coverage/coverprofile > build/coverage/coverprofile.json
$(GOCOV) report build/coverage/coverprofile.json
.PHONY: test-unit-ginkgo
test-unit-ginkgo: ginkgo
rm -f build/coverage/*unit.coverprofile
$(GINKGO) \
--coverprofile=unit.coverprofile \
--output-dir=build/coverage \
--randomize-all \
--randomize-suites \
--fail-on-pending \
--keep-going \
-compilers=2 \
-race \
-trace \
cmd/... \
pkg/...
# Based on https://github.com/kubernetes/community/blob/master/contributors/devel/sig-testing/integration-tests.md
.PHONY: test-integration
test-integration: install-apis ginkgo
./hack/setup-webhook-cert-integration-test.sh
$(GINKGO) \
--randomize-all \
--randomize-suites \
--fail-on-pending \
-trace \
test/integration/...
.PHONY: test-e2e
test-e2e: install-strategies test-e2e-plain
.PHONY: test-e2e-plain
test-e2e-plain: ginkgo
TEST_CONTROLLER_NAMESPACE=${TEST_NAMESPACE} \
TEST_WATCH_NAMESPACE=${TEST_NAMESPACE} \
TEST_E2E_SERVICEACCOUNT_NAME=${TEST_E2E_SERVICEACCOUNT_NAME} \
TEST_E2E_TIMEOUT_MULTIPLIER=${TEST_E2E_TIMEOUT_MULTIPLIER} \
TEST_E2E_VERIFY_TEKTONOBJECTS=${TEST_E2E_VERIFY_TEKTONOBJECTS} \
$(GINKGO) ${TEST_E2E_FLAGS} test/e2e/
.PHONY: test-e2e-kind-with-prereq-install
test-e2e-kind-with-prereq-install: ginkgo install-controller-kind install-strategies test-e2e-plain
.PHONY: install
install:
@echo "Building Shipwright Build controller for platform ${GO_OS}/${GO_ARCH}"
GOOS=$(GO_OS) GOARCH=$(GO_ARCH) KO_DOCKER_REPO="$(IMAGE_HOST)/$(IMAGE_NAMESPACE)" GOFLAGS="$(GO_FLAGS)" ko apply --base-import-paths -R -f deploy/ -- --server-side
.PHONY: install-with-pprof
install-with-pprof:
GOOS=$(GO_OS) GOARCH=$(GO_ARCH) GOFLAGS="$(GO_FLAGS) -tags=pprof_enabled" ko apply -R -f deploy/ -- --server-side
install-apis:
for resource in buildruns builds buildstrategies clusterbuildstrategies ; do \
if kubectl get crd "$${resource}.shipwright.io" >/dev/null 2>&1 ; then \
if [ "$$(kubectl get crd "$${resource}.shipwright.io" -o go-template='{{.spec.conversion.webhook.clientConfig.caBundle}}')" == "<no value>" ] ; then \
kubectl replace -f "deploy/crds/shipwright.io_$${resource}.yaml" ; \
else \
kubectl apply -f "deploy/crds/shipwright.io_$${resource}.yaml" --server-side ; \
fi ; \
else \
kubectl create -f "deploy/crds/shipwright.io_$${resource}.yaml" ; \
fi ; \
done
for i in 1 2 3 ; do \
kubectl wait --timeout=$(TIMEOUT) --for="condition=Established" crd/clusterbuildstrategies.shipwright.io && \
break ; \
sleep 15 ; \
done
.PHONY: install-controller
install-controller: install-apis
@echo "Building Shipwright Build controller for platform ${GO_OS}/${GO_ARCH}"
GOOS=$(GO_OS) GOARCH=$(GO_ARCH) KO_DOCKER_REPO="$(IMAGE_HOST)/$(IMAGE_NAMESPACE)" GOFLAGS="$(GO_FLAGS)" ko apply --base-import-paths -f deploy/
.PHONY: install-controller-kind
install-controller-kind: install-apis
KO_DOCKER_REPO=kind.local \
GOFLAGS="$(GO_FLAGS)" \
ko apply \
--platform=$(GO_OS)/$(GO_ARCH) \
--filename=deploy
./hack/setup-webhook-cert.sh
.PHONY: install-strategies
install-strategies: install-apis
[ -n "${TEST_NAMESPACE}" ] && ADDITIONAL_PARAMS="-n ${TEST_NAMESPACE}"; \
kubectl apply $$ADDITIONAL_PARAMS -R -f samples/v1beta1/buildstrategy/
.PHONY: local
local: install-strategies
CONTROLLER_NAME=shipwright-build-controller \
go run cmd/shipwright-build-controller/main.go $(ZAP_FLAGS)
.PHONY: local-plain
local-plain:
CONTROLLER_NAME=shipwright-build-controller \
go run cmd/shipwright-build-controller/main.go $(ZAP_FLAGS)
.PHONY: clean
clean:
rm -rf $(OUTPUT_DIR)
.PHONY: gen-fakes
gen-fakes:
./hack/generate-fakes.sh
.PHONY: kubectl
kubectl:
./hack/install-kubectl.sh
.PHONY: kind-registry
kind-registry:
./hack/install-registry.sh
.PHONY: kind-tekton
kind-tekton:
./hack/install-tekton.sh
.PHONY: kind
kind:
./hack/install-kind.sh
./hack/install-registry.sh