2024-02-01 13:08:54 +00:00
|
|
|
# Directory containing the Makefile.
|
|
|
|
PROJECT_ROOT = $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
|
|
|
|
|
|
|
|
export GOBIN ?= $(PROJECT_ROOT)/bin
|
|
|
|
export PATH := $(GOBIN):$(PATH)
|
2022-08-16 09:48:06 +00:00
|
|
|
|
2023-08-28 20:44:55 +00:00
|
|
|
GOVULNCHECK = $(GOBIN)/govulncheck
|
2022-08-16 09:48:06 +00:00
|
|
|
BENCH_FLAGS ?= -cpuprofile=cpu.pprof -memprofile=mem.pprof -benchmem
|
|
|
|
|
|
|
|
# Directories containing independent Go modules.
|
2023-08-28 20:44:55 +00:00
|
|
|
MODULE_DIRS = . ./exp ./benchmarks ./zapgrpc/internal/test
|
2022-08-16 09:48:06 +00:00
|
|
|
|
2024-02-01 13:08:54 +00:00
|
|
|
# Directories that we want to track coverage for.
|
|
|
|
COVER_DIRS = . ./exp
|
2022-08-16 09:48:06 +00:00
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
all: lint test
|
|
|
|
|
|
|
|
.PHONY: lint
|
2024-02-01 13:08:54 +00:00
|
|
|
lint: golangci-lint tidy-lint license-lint
|
|
|
|
|
|
|
|
.PHONY: golangci-lint
|
|
|
|
golangci-lint:
|
|
|
|
@$(foreach mod,$(MODULE_DIRS), \
|
|
|
|
(cd $(mod) && \
|
|
|
|
echo "[lint] golangci-lint: $(mod)" && \
|
|
|
|
golangci-lint run --path-prefix $(mod)) &&) true
|
|
|
|
|
|
|
|
.PHONY: tidy
|
|
|
|
tidy:
|
|
|
|
@$(foreach dir,$(MODULE_DIRS), \
|
|
|
|
(cd $(dir) && go mod tidy) &&) true
|
|
|
|
|
|
|
|
.PHONY: tidy-lint
|
|
|
|
tidy-lint:
|
|
|
|
@$(foreach mod,$(MODULE_DIRS), \
|
|
|
|
(cd $(mod) && \
|
|
|
|
echo "[lint] tidy: $(mod)" && \
|
|
|
|
go mod tidy && \
|
|
|
|
git diff --exit-code -- go.mod go.sum) &&) true
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: license-lint
|
|
|
|
license-lint:
|
|
|
|
./checklicense.sh
|
2023-08-28 20:44:55 +00:00
|
|
|
|
|
|
|
$(GOVULNCHECK):
|
|
|
|
cd tools && go install golang.org/x/vuln/cmd/govulncheck
|
2022-08-16 09:48:06 +00:00
|
|
|
|
|
|
|
.PHONY: test
|
|
|
|
test:
|
|
|
|
@$(foreach dir,$(MODULE_DIRS),(cd $(dir) && go test -race ./...) &&) true
|
|
|
|
|
|
|
|
.PHONY: cover
|
|
|
|
cover:
|
2024-02-01 13:08:54 +00:00
|
|
|
@$(foreach dir,$(COVER_DIRS), ( \
|
|
|
|
cd $(dir) && \
|
|
|
|
go test -race -coverprofile=cover.out -coverpkg=./... ./... \
|
|
|
|
&& go tool cover -html=cover.out -o cover.html) &&) true
|
2022-08-16 09:48:06 +00:00
|
|
|
|
|
|
|
.PHONY: bench
|
|
|
|
BENCH ?= .
|
|
|
|
bench:
|
|
|
|
@$(foreach dir,$(MODULE_DIRS), ( \
|
|
|
|
cd $(dir) && \
|
|
|
|
go list ./... | xargs -n1 go test -bench=$(BENCH) -run="^$$" $(BENCH_FLAGS) \
|
|
|
|
) &&) true
|
|
|
|
|
|
|
|
.PHONY: updatereadme
|
|
|
|
updatereadme:
|
|
|
|
rm -f README.md
|
|
|
|
cat .readme.tmpl | go run internal/readme/readme.go > README.md
|
|
|
|
|
2023-08-28 20:44:55 +00:00
|
|
|
.PHONY: vulncheck
|
|
|
|
vulncheck: $(GOVULNCHECK)
|
2024-02-01 13:08:54 +00:00
|
|
|
$(GOVULNCHECK) ./...
|