Merge pull request #27904 from vishh/node-e2e-makefile

Automatic merge from submit-queue

Add a makefile rule for ginkgo.
pull/6/head
k8s-merge-robot 2016-06-24 13:57:21 -07:00 committed by GitHub
commit 7565e38d0c
1 changed files with 9 additions and 1 deletions

View File

@ -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