remove verify-licenses from ci-presubmit

see https://github.com/cert-manager/release/pull/111

Signed-off-by: Ashley Davis <ashley.davis@jetstack.io>
This commit is contained in:
Ashley Davis 2022-12-06 16:40:20 +00:00
parent 37ae8b2773
commit 79bd127d3b
No known key found for this signature in database
GPG Key ID: DD14CC017E32BEB1

View File

@ -3,7 +3,7 @@
## request or change is merged.
##
## @category CI
ci-presubmit: verify-imports verify-errexit verify-boilerplate verify-codegen verify-crds verify-licenses
ci-presubmit: verify-imports verify-errexit verify-boilerplate verify-codegen verify-crds
.PHONY: verify-imports
verify-imports: | $(NEEDS_GOIMPORTS)
@ -25,6 +25,9 @@ verify-boilerplate:
$(__PYTHON) hack/verify_boilerplate.py
.PHONY: verify-licenses
## Check that the LICENSES file is up to date; must pass before a change to go.mod can be merged
##
## @category CI
verify-licenses: $(BINDIR)/scratch/LATEST-LICENSES
@diff $(BINDIR)/scratch/LATEST-LICENSES LICENSES >/dev/null || (echo -e "\033[0;33mLICENSES seem to be out of date; update with 'make update-licenses'\033[0m" && exit 1)