Skip to content

Commit 3747b86

Browse files
author
Per Goncalves da Silva
committed
remove convert-diff gha and tidy up Makefile
Signed-off-by: Per Goncalves da Silva <pegoncal@redhat.com>
1 parent 3bc7496 commit 3747b86

File tree

2 files changed

+8
-24
lines changed

2 files changed

+8
-24
lines changed

.github/workflows/convert-diff.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

Makefile

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,14 @@ generate: $(CONTROLLER_GEN) #EXHELP Generate code containing DeepCopy, DeepCopyI
151151
$(CONTROLLER_GEN) --load-build-tags=$(GO_BUILD_TAGS) object:headerFile="hack/boilerplate.go.txt" paths="./..."
152152

153153
.PHONY: verify
154-
verify: tidy fmt generate manifests crd-ref-docs #HELP Verify all generated code is up-to-date.
154+
verify: tidy fmt generate manifests crd-ref-docs generate-bundle-manifests #HELP Verify all generated code is up-to-date.
155155
git diff --exit-code
156156

157-
.PHONY: verify-convert
158-
verify-convert:
157+
# Renders registry+v1 bundles in test/convert
158+
# Used by CI in verify to catch regressions in the registry+v1 -> plain conversion code
159+
.PHONY: generate-bundle-manifests
160+
generate-bundle-manifests:
159161
go run test/convert/generate-manifests.go
160-
git diff --exit-code
161162

162163
.PHONY: fix-lint
163164
fix-lint: $(GOLANGCI_LINT) #EXHELP Fix lint issues
@@ -397,17 +398,17 @@ crd-ref-docs: $(CRD_REF_DOCS) #EXHELP Generate the API Reference Documents.
397398
VENVDIR := $(abspath docs/.venv)
398399

399400
.PHONY: build-docs
400-
build-docs: venv
401+
build-docs:
401402
. $(VENV)/activate; \
402403
mkdocs build
403404

404405
.PHONY: serve-docs
405-
serve-docs: venv
406+
serve-docs:
406407
. $(VENV)/activate; \
407408
mkdocs serve
408409

409410
.PHONY: deploy-docs
410-
deploy-docs: venv
411+
deploy-docs:
411412
. $(VENV)/activate; \
412413
mkdocs gh-deploy --force
413414

0 commit comments

Comments
 (0)