From db34e923c520d6e45b08aa6e1031e89227f31710 Mon Sep 17 00:00:00 2001 From: Katrina Verey Date: Mon, 4 Apr 2022 20:40:07 -0400 Subject: [PATCH] rever meaning of verify kustomize target --- Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index fb311c710..dc00fbd93 100644 --- a/Makefile +++ b/Makefile @@ -97,9 +97,6 @@ verify-kustomize: \ install-tools \ lint-kustomize \ test-unit-kustomize-all \ - test-unit-non-plugin \ - build-non-plugin \ - test-go-mod \ test-examples-kustomize-against-HEAD \ 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 .PHONY: prow-presubmit-check prow-presubmit-check: \ - verify-kustomize + verify-kustomize \ + test-unit-kyaml-all \ + test-go-mod \ + build-non-plugin-all .PHONY: license license: $(MYGOBIN)/addlicense @@ -135,8 +135,9 @@ test-unit-all: $(builtinplugins) test-unit-non-plugin: ./hack/for-each-module.sh "make test" "./plugin/*" 15 -.PHONY: build-non-plugin -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. +.PHONY: build-non-plugin-all +build-non-plugin-all: ./hack/for-each-module.sh "make build" "./plugin/*" 15 .PHONY: test-unit-kustomize-api