Merge pull request #7030 from justinsb/govet_all_the_things

Makefile: keep go vet simple
This commit is contained in:
Kubernetes Prow Robot 2019-05-19 08:55:11 -07:00 committed by GitHub
commit 41efe9d938
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -40,8 +40,6 @@ BAZELUPLOAD=$(BAZELBUILD)/upload
UID:=$(shell id -u)
GID:=$(shell id -g)
TESTABLE_PACKAGES:=$(shell egrep -v "k8s.io/kops/vendor" hack/.packages)
# We need to ignore clientsets because of kubernetes/kubernetes#60584
GOVETABLE_PACKAGES:=$(shell egrep -v "k8s.io/kops/vendor|clientset/fake" hack/.packages)
BAZEL_OPTIONS?=
API_OPTIONS?=
GCFLAGS?=
@ -516,7 +514,7 @@ verify-goimports:
.PHONY: govet
govet: ${BINDATA_TARGETS}
go vet ${GOVETABLE_PACKAGES}
go vet ./...
# --------------------------------------------------
# Continuous integration targets