Merge pull request #29185 from soltysh/make_verify

Automatic merge from submit-queue

Fix make verify

@thockin this fixes `make verify` which was previously failing due to undefined `BRANCH` and `VERBOSE` variables, ptal
This commit is contained in:
k8s-merge-robot
2016-08-02 01:53:44 -07:00
committed by GitHub
4 changed files with 5 additions and 8 deletions

View File

@@ -50,6 +50,7 @@ KUBE_GOFLAGS := $(GOFLAGS)
KUBE_GOLDFLAGS := $(GOLDFLAGS)
GOGCFLAGS ?=
BRANCH ?=
KUBE_GOGCFLAGS = $(GOGCFLAGS)
export KUBE_GOGCFLAGS GOGCFLAGS
@@ -94,6 +95,7 @@ ginkgo:
.PHONY: verify
verify:
KUBE_VERIFY_GIT_BRANCH=$(BRANCH) hack/make-rules/verify.sh -v
hack/make-rules/vet.sh
# Build and run tests.
#