-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
95 lines (75 loc) · 1.96 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Copyright (c) 2024 Six After, Inc.
#
# This source code is licensed under the Apache 2.0 License found in the
# LICENSE file in the root directory of this source tree.
SHELL := /bin/bash
.DEFAULT: ;: do nothing
GO_CMD=go
GO_BUILD=$(GO_CMD) build
GO_CLEAN=$(GO_CMD) clean
GO_TEST=$(GO_CMD) test
GO_GET=$(GO_CMD) get
GO_VET=$(GO_CMD) vet
GO_FMT=$(GO_CMD) fmt
GO_MOD=$(GO_CMD) mod
GO_LINT_CMD=golangci-lint run
GO_WORK=$(GO_CMD) work
GO_WORK_FILE := ./go.work
export BINARY_NAME=out/nanoid
.PHONY: all
all: clean build test
.PHONY: build
build: ## Build the binary executable.
@./scripts/go-build.sh
.PHONY: deps
deps: ## Get the dependencies and vendor
@./scripts/go-deps.sh
.PHONY: test
test: ## Execute unit tests
$(GO_TEST) -v ./...
.PHONY: bench
bench: ## Execute benchmark tests
@rm -f mem.out
$(GO_TEST) -bench=. -benchmem -memprofile=mem.out -cpuprofile=cpu.out
.PHONY: clean
clean: ## Remove previous build
$(GO_CLEAN)
rm -f "${BINARY_NAME}"
.PHONY: cover
cover: ## Generate global code coverage report
@rm -f coverage.out
$(GO_TEST) -v ./... -coverprofile coverage.out
.PHONY: analyze
analyze: ## Generate static analysis report
$(GO_TEST) --json ./... -coverprofile coverage.out > coverage.json
.PHONY: fmt
fmt: ## Format the files
$(GO_FMT) ./...
.PHONY: vet
vet: ## Vet the files
$(GO_VET) -v ./...
.PHONY: lint
lint: ## Lint the files
$(GO_LINT_CMD) --config .golangci.yaml --verbose ./...
.PHONY: tidy
tidy: ## Tidy vendored dependencies
$(GO_MOD) tidy
.PHONY: vendor
vendor:
@if [ -f $(GO_WORK_FILE) ]; then \
$(GO_WORK) vendor; \
else \
$(GO_MOD) vendor; \
fi
.PHONY: update
update: ## Update Go dependencies
$(GO_GET) -u
.PHONY: vuln
vuln: ## Check for vulnerabilities
govulncheck ./...
.PHONY: help
help: ## Display this help screen
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
# %: - rule which match any task name; @: - empty recipe = do nothing
%:
@: