Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2017-07-03 18:46:49 +0300
committerNick Thomas <nick@gitlab.com>2017-07-03 18:46:49 +0300
commit5b466171aaeae9a5931831bcef70e12435d41371 (patch)
treecf97fe42650d1809348eaf69b071321360fdbca0 /Makefile
parent86e6f0e1134f990c4a5d3c4d5735db0f334d5551 (diff)
Go 1.8 is the minimum supported version
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a097bd21..dbedf313 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,6 @@ endif
GO_LDFLAGS ?= -X main.VERSION=$(VERSION) -X main.REVISION=$(REVISION)
GO_FILES ?= $(shell find . -name '*.go')
-export GO15VENDOREXPERIMENT := 1
export CGO_ENABLED := 0
all: gitlab-pages
@@ -21,8 +20,7 @@ gitlab-pages: $(GO_FILES)
update:
godep save ./...
-verify-lite: fmt vet complexity test # lint does not work on go1.5 any more
-verify: verify-lite lint
+verify: fmt vet complexity lint test
fmt:
go fmt ./... | awk '{ print "Please run go fmt"; exit 1 }'