Merge pull request #5618 from SgtCoDFish/no-licenses-ci-presubmit

Remove verify-licenses from ci-presubmit
This commit is contained in:
jetstack-bot 2022-12-07 11:25:20 +00:00 committed by GitHub
commit 2f24231383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)