-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMakefile
More file actions
177 lines (146 loc) · 4.32 KB
/
Makefile
File metadata and controls
177 lines (146 loc) · 4.32 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
.DEFAULT_GOAL:=help
-include .makerc
# --- Config -----------------------------------------------------------------
GOMODS=$(shell find . -type f -name go.mod)
# Newline hack for error output
define br
endef
# --- Targets -----------------------------------------------------------------
# This allows us to accept extra arguments
%: .mise .lefthook go.work
@:
# Ensure go.work file
go.work:
@go work init
@go work use -r .
@go work sync
.PHONY: .mise
# Install dependencies
.mise:
ifeq (, $(shell command -v mise))
$(error $(br)$(br)Please ensure you have 'mise' installed and activated!$(br)$(br) $$ brew update$(br) $$ brew install mise$(br)$(br)See the documentation: https://mise.jdx.dev/getting-started.html)
endif
@mise install
.PHONY: .lefthook
# Configure git hooks for lefthook
.lefthook:
@lefthook install --reset-hooks-path
### Tasks
.PHONY: check
## Run lint & test
check: tidy examples generate lint test
.PHONY: tidy
## Run go mod tidy
tidy:
@echo "〉go mod tidy"
@$(foreach mod,$(GOMODS), (cd $(dir $(mod)) && echo "📂 $(dir $(mod))" && go mod tidy) &&) true
.PHONY: lint
## Run linter
lint:
@echo "〉golangci-lint run"
@$(foreach mod,$(GOMODS), (cd $(dir $(mod)) && echo "📂 $(dir $(mod))" && golangci-lint run) &&) true
.PHONY: lint.fix
## Fix lint violations
lint.fix:
@echo "〉golangci-lint run fix"
@$(foreach mod,$(GOMODS), (cd $(dir $(mod)) && echo "📂 $(dir $(mod))" && golangci-lint run --fix) &&) true
.PHONY: test
## Run tests
test: go.work
@echo "〉go test"
@GO_TEST_TAGS=-skip go test -coverprofile=coverage.out -tags=safe work
.PHONY: test.race
## Run tests with -race
test.race: go.work
@echo "〉go test -race"
@GO_TEST_TAGS=-skip go test -coverprofile=coverage.out -tags=safe -race work
.PHONY: test.nocache
## Run tests with -count=1
test.nocache: go.work
@echo "〉go test -count=1"
@GO_TEST_TAGS=-skip go test -coverprofile=coverage.out -tags=safe -count=1 work
.PHONY: test.bench
## Run tests with -bench
test.bench: go.work
@echo "〉go test -bench"
@GO_TEST_TAGS=-skip go test -tags=safe -bench=. -benchmem -count=10 work
.PHONY: outdated
## Show outdated direct dependencies
outdated:
@echo "〉go mod outdated"
@go list -u -m -json all | go-mod-outdated -update -direct
.PHONY: build
## Build binary
build:
@echo "〉go build bin/gotsrpc"
@rm -f bin/gotsrpc
@go build -o bin/gotsrpc cmd/gotsrpc/gotsrpc.go
.PHONY: build.debug
## Build binary in debug mode
build.debug:
@echo "〉go build bin/gotsrpc (debug)"
@rm -f bin/gotsrpc
@go build -gcflags "all=-N -l" -o bin/gotsrpc cmd/gotsrpc/gotsrpc.go
.PHONY: install
## Run go install
install:
@echo "〉installing gotsrpc"
@go install cmd/gotsrpc/gotsrpc.go
.PHONY: install.debug
## Run go install with debug
install.debug:
@echo "〉installing gotsrpc (debug)"
@go install -gcflags "all=-N -l" cmd/gotsrpc/gotsrpc.go
EXAMPLES=basic monitor
define examples
.PHONY: example.$(1)
example.$(1):
@echo "📝 example: ${1}"
@cd example/${1} && go run ../../cmd/gotsrpc/gotsrpc.go gotsrpc.yml
@-cd example/${1}/client && ../../node_modules/.bin/tsc --build
.PHONY: example.$(1).run
example.$(1).run: example.${1}
@cd example/${1} && go run main.go
.PHONY: example.$(1).debug
example.$(1).debug: build.debug
@cd example/${1} && dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec ../../bin/gotsrpc gotsrpc.yml
endef
$(foreach p,$(EXAMPLES),$(eval $(call examples,$(p))))
.PHONY: generate
## Run go generate
generate:
@echo "〉go generate"
@go generate work
.PHONY: examples
## Generate examples
examples:
@echo "〉Generating examples"
@for name in example/*/; do\
if [ $$name != "example/node_modules/" ]; then \
$(MAKE) example.`basename $${name}`;\
fi \
done
.PHONY: examples
### Utils
.PHONY: docs
## Open go docs
docs:
@go doc -http
.PHONY: help
## Show help text
help:
@echo "gotsrpc\n"
@echo "Usage:\n make [task]"
@awk '{ \
if($$0 ~ /^### /){ \
if(help) printf "%-23s %s\n\n", cmd, help; help=""; \
printf "\n%s:\n", substr($$0,5); \
} else if($$0 ~ /^[a-zA-Z0-9._-]+:/){ \
cmd = substr($$0, 1, index($$0, ":")-1); \
if(help) printf " %-23s %s\n", cmd, help; help=""; \
} else if($$0 ~ /^##/){ \
help = help ? help "\n " substr($$0,3) : substr($$0,3); \
} else if(help){ \
print "\n " help "\n"; help=""; \
} \
}' $(MAKEFILE_LIST)