blob: 9b1bc3b0e1d891f34507d5454a00642942c66561 [file] [log] [blame]
Girish Gowdra390f12f2021-07-01 15:53:49 -07001export GOBIN ?= $(shell pwd)/bin
Girish Gowdra64503432020-01-07 10:59:10 +05302
Girish Gowdra390f12f2021-07-01 15:53:49 -07003GOLINT = $(GOBIN)/golint
4STATICCHECK = $(GOBIN)/staticcheck
Girish Gowdra64503432020-01-07 10:59:10 +05305BENCH_FLAGS ?= -cpuprofile=cpu.pprof -memprofile=mem.pprof -benchmem
Girish Gowdra390f12f2021-07-01 15:53:49 -07006
7# Directories containing independent Go modules.
8#
9# We track coverage only for the main module.
10MODULE_DIRS = . ./benchmarks ./zapgrpc/internal/test
11
Girish Gowdra64503432020-01-07 10:59:10 +053012# Many Go tools take file globs or directories as arguments instead of packages.
Girish Gowdra390f12f2021-07-01 15:53:49 -070013GO_FILES := $(shell \
14 find . '(' -path '*/.*' -o -path './vendor' ')' -prune \
15 -o -name '*.go' -print | cut -b3-)
Girish Gowdra64503432020-01-07 10:59:10 +053016
17.PHONY: all
18all: lint test
19
Girish Gowdra64503432020-01-07 10:59:10 +053020.PHONY: lint
Girish Gowdra390f12f2021-07-01 15:53:49 -070021lint: $(GOLINT) $(STATICCHECK)
Girish Gowdra64503432020-01-07 10:59:10 +053022 @rm -rf lint.log
23 @echo "Checking formatting..."
Girish Gowdra390f12f2021-07-01 15:53:49 -070024 @gofmt -d -s $(GO_FILES) 2>&1 | tee lint.log
Girish Gowdra64503432020-01-07 10:59:10 +053025 @echo "Checking vet..."
Girish Gowdra390f12f2021-07-01 15:53:49 -070026 @$(foreach dir,$(MODULE_DIRS),(cd $(dir) && go vet ./... 2>&1) &&) true | tee -a lint.log
Girish Gowdra64503432020-01-07 10:59:10 +053027 @echo "Checking lint..."
Girish Gowdra390f12f2021-07-01 15:53:49 -070028 @$(foreach dir,$(MODULE_DIRS),(cd $(dir) && $(GOLINT) ./... 2>&1) &&) true | tee -a lint.log
29 @echo "Checking staticcheck..."
30 @$(foreach dir,$(MODULE_DIRS),(cd $(dir) && $(STATICCHECK) ./... 2>&1) &&) true | tee -a lint.log
Girish Gowdra64503432020-01-07 10:59:10 +053031 @echo "Checking for unresolved FIXMEs..."
Girish Gowdra390f12f2021-07-01 15:53:49 -070032 @git grep -i fixme | grep -v -e Makefile | tee -a lint.log
Girish Gowdra64503432020-01-07 10:59:10 +053033 @echo "Checking for license headers..."
Girish Gowdra390f12f2021-07-01 15:53:49 -070034 @./checklicense.sh | tee -a lint.log
Girish Gowdra64503432020-01-07 10:59:10 +053035 @[ ! -s lint.log ]
Girish Gowdra390f12f2021-07-01 15:53:49 -070036 @echo "Checking 'go mod tidy'..."
37 @make tidy
38 @if ! git diff --quiet; then \
39 echo "'go mod tidy' resulted in changes or working tree is dirty:"; \
40 git --no-pager diff; \
41 fi
42
43$(GOLINT):
44 cd tools && go install golang.org/x/lint/golint
45
46$(STATICCHECK):
47 cd tools && go install honnef.co/go/tools/cmd/staticcheck
Girish Gowdra64503432020-01-07 10:59:10 +053048
49.PHONY: test
50test:
Girish Gowdra390f12f2021-07-01 15:53:49 -070051 @$(foreach dir,$(MODULE_DIRS),(cd $(dir) && go test -race ./...) &&) true
Girish Gowdra64503432020-01-07 10:59:10 +053052
53.PHONY: cover
54cover:
Girish Gowdra390f12f2021-07-01 15:53:49 -070055 go test -race -coverprofile=cover.out -coverpkg=./... ./...
56 go tool cover -html=cover.out -o cover.html
Girish Gowdra64503432020-01-07 10:59:10 +053057
58.PHONY: bench
59BENCH ?= .
60bench:
Girish Gowdra390f12f2021-07-01 15:53:49 -070061 @$(foreach dir,$(MODULE_DIRS), ( \
62 cd $(dir) && \
63 go list ./... | xargs -n1 go test -bench=$(BENCH) -run="^$$" $(BENCH_FLAGS) \
64 ) &&) true
Girish Gowdra64503432020-01-07 10:59:10 +053065
66.PHONY: updatereadme
67updatereadme:
68 rm -f README.md
69 cat .readme.tmpl | go run internal/readme/readme.go > README.md
Girish Gowdra390f12f2021-07-01 15:53:49 -070070
71.PHONY: tidy
72tidy:
73 @$(foreach dir,$(MODULE_DIRS),(cd $(dir) && go mod tidy) &&) true