blob: 1ef263075d762d1ce598eb31fd218bfa28b5a16a [file] [log] [blame]
Don Newton7577f072020-01-06 12:41:11 -05001# Many Go tools take file globs or directories as arguments instead of packages.
2PACKAGE_FILES ?= *.go
3
4# For pre go1.6
5export GO15VENDOREXPERIMENT=1
6
7
8.PHONY: build
9build:
10 go build -i ./...
11
12
13.PHONY: install
14install:
15 glide --version || go get github.com/Masterminds/glide
16 glide install
17
18
19.PHONY: test
20test:
21 go test -cover -race ./...
22
23
24.PHONY: install_ci
25install_ci: install
26 go get github.com/wadey/gocovmerge
27 go get github.com/mattn/goveralls
28 go get golang.org/x/tools/cmd/cover
29
30.PHONY: install_lint
31install_lint:
32 go get golang.org/x/lint/golint
33
34
35.PHONY: lint
36lint:
37 @rm -rf lint.log
38 @echo "Checking formatting..."
39 @gofmt -d -s $(PACKAGE_FILES) 2>&1 | tee lint.log
40 @echo "Checking vet..."
41 @go vet ./... 2>&1 | tee -a lint.log;)
42 @echo "Checking lint..."
43 @golint $$(go list ./...) 2>&1 | tee -a lint.log
44 @echo "Checking for unresolved FIXMEs..."
45 @git grep -i fixme | grep -v -e vendor -e Makefile | tee -a lint.log
46 @[ ! -s lint.log ]
47
48
49.PHONY: test_ci
50test_ci: install_ci build
51 ./scripts/cover.sh $(shell go list $(PACKAGES))