summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-06-29 15:59:12 +0100
committerJoram Wilander <jwawilander@gmail.com>2017-06-29 10:59:12 -0400
commit02019f154d7baf42fc6463278bf318f83b34cd29 (patch)
tree1dac85a23982b03be5e392220d3f7876b25cca23 /Makefile
parenteb7561e05bb797a0f925ac69079040016926eef5 (diff)
downloadchat-02019f154d7baf42fc6463278bf318f83b34cd29.tar.gz
chat-02019f154d7baf42fc6463278bf318f83b34cd29.tar.bz2
chat-02019f154d7baf42fc6463278bf318f83b34cd29.zip
Add missing packages to govet. (#6793)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5cf1eeb75..5a72f5ceb 100644
--- a/Makefile
+++ b/Makefile
@@ -528,6 +528,8 @@ govet:
$(GO) vet $(GOFLAGS) ./app || exit 1
$(GO) vet $(GOFLAGS) ./cmd/platform || exit 1
$(GO) vet $(GOFLAGS) ./einterfaces || exit 1
+ $(GO) vet $(GOFLAGS) ./jobs || exit 1
+ $(GO) vet $(GOFLAGS) ./jobs/jobserver || exit 1
$(GO) vet $(GOFLAGS) ./manualtesting || exit 1
$(GO) vet $(GOFLAGS) ./model || exit 1
$(GO) vet $(GOFLAGS) ./model/gitlab || exit 1
@@ -541,6 +543,7 @@ ifeq ($(BUILD_ENTERPRISE_READY),true)
$(GO) vet $(GOFLAGS) ./enterprise/cluster || exit 1
$(GO) vet $(GOFLAGS) ./enterprise/compliance || exit 1
$(GO) vet $(GOFLAGS) ./enterprise/data_retention || exit 1
+ $(GO) vet $(GOFLAGS) ./enterprise/elasticsearch || exit 1
$(GO) vet $(GOFLAGS) ./enterprise/emoji || exit 1
$(GO) vet $(GOFLAGS) ./enterprise/imports || exit 1
$(GO) vet $(GOFLAGS) ./enterprise/ldap || exit 1