rever meaning of verify kustomize target

This commit is contained in:
Katrina Verey
2022-04-04 20:40:07 -04:00
parent df80b29694
commit db34e923c5

View File

@@ -97,9 +97,6 @@ verify-kustomize: \
install-tools \ install-tools \
lint-kustomize \ lint-kustomize \
test-unit-kustomize-all \ test-unit-kustomize-all \
test-unit-non-plugin \
build-non-plugin \
test-go-mod \
test-examples-kustomize-against-HEAD \ test-examples-kustomize-against-HEAD \
test-examples-kustomize-against-v4-release test-examples-kustomize-against-v4-release
@@ -107,7 +104,10 @@ verify-kustomize: \
# https://github.com/kubernetes/test-infra/tree/master/config/jobs/kubernetes-sigs/kustomize # https://github.com/kubernetes/test-infra/tree/master/config/jobs/kubernetes-sigs/kustomize
.PHONY: prow-presubmit-check .PHONY: prow-presubmit-check
prow-presubmit-check: \ prow-presubmit-check: \
verify-kustomize verify-kustomize \
test-unit-kyaml-all \
test-go-mod \
build-non-plugin-all
.PHONY: license .PHONY: license
license: $(MYGOBIN)/addlicense license: $(MYGOBIN)/addlicense
@@ -135,8 +135,9 @@ test-unit-all: $(builtinplugins)
test-unit-non-plugin: test-unit-non-plugin:
./hack/for-each-module.sh "make test" "./plugin/*" 15 ./hack/for-each-module.sh "make test" "./plugin/*" 15
.PHONY: build-non-plugin # This target is used by our Github Actions CI to run unit tests for all non-plugin modules in multiple GOOS environments.
build-non-plugin: .PHONY: build-non-plugin-all
build-non-plugin-all:
./hack/for-each-module.sh "make build" "./plugin/*" 15 ./hack/for-each-module.sh "make build" "./plugin/*" 15
.PHONY: test-unit-kustomize-api .PHONY: test-unit-kustomize-api