From e515cc131d718519755a6cda50f490a41faceb10 Mon Sep 17 00:00:00 2001 From: Vishnu Kannan Date: Wed, 22 Jun 2016 15:51:52 -0700 Subject: [PATCH] Add a makefile rule for ginkgo. Signed-off-by: Vishnu Kannan --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 884c0ca972..6628dc6aeb 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,14 @@ all: hack/build-go.sh $(WHAT) .PHONY: all +# Build ginkgo +# +# Example: +# make ginkgo +ginkgo: + hack/build-go.sh vendor/github.com/onsi/ginkgo/ginkgo +.PHONY: ginkgo + # Runs all the presubmission verifications. # # Args: @@ -111,7 +119,7 @@ test_e2e: # make test_e2e_node FOCUS=kubelet SKIP=container # make test_e2e_node REMOTE=true DELETE_INSTANCES=true # Build and run tests. -test_e2e_node: +test_e2e_node: ginkgo hack/e2e-node-test.sh .PHONY: test_e2e_node