-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile
235 lines (206 loc) · 7.02 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
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# Copyright 2023 Google LLC
# Copyright 2024 Ian Lewis
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
SHELL := /bin/bash
OUTPUT_FORMAT ?= $(shell if [ "${GITHUB_ACTIONS}" == "true" ]; then echo "github"; else echo ""; fi)
BENCHTIME ?= 1s
TESTCOUNT ?= 1
REPO_NAME = $(shell basename "$$(pwd)")
# The help command prints targets in groups. Help documentation in the Makefile
# uses comments with double hash marks (##). Documentation is printed by the
# help target in the order in appears in the Makefile.
#
# Make targets can be documented with double hash marks as follows:
#
# target-name: ## target documentation.
#
# Groups can be added with the following style:
#
# ## Group name
.PHONY: help
help: ## Shows all targets and help from the Makefile (this message).
@echo "$(REPO_NAME) Makefile"
@echo "Usage: make [COMMAND]"
@echo ""
@grep --no-filename -E '^([/a-z.A-Z0-9_%-]+:.*?|)##' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = "(:.*?|)## ?"}; { \
if (length($$1) > 0) { \
printf " \033[36m%-20s\033[0m %s\n", $$1, $$2; \
} else { \
if (length($$2) > 0) { \
printf "%s\n", $$2; \
} \
} \
}'
package-lock.json:
npm install
node_modules/.installed: package.json package-lock.json
npm ci
touch node_modules/.installed
.venv/bin/activate:
python -m venv .venv
.venv/.installed: .venv/bin/activate requirements.txt
./.venv/bin/pip install -r requirements.txt --require-hashes
touch .venv/.installed
## Testing
#####################################################################
.PHONY: unit-test
unit-test: go-test ## Runs all unit tests.
.PHONY: go-test
go-test: ## Runs Go unit tests.
@set -e;\
go mod vendor; \
extraargs=""; \
if [ "$(OUTPUT_FORMAT)" == "github" ]; then \
extraargs="-v"; \
fi; \
go test $$extraargs -mod=vendor -race -coverprofile=coverage.out -covermode=atomic ./...
## Benchmarking
#####################################################################
.PHONY: go-benchmark
go-benchmark: ## Runs Go benchmarks.
@set -e;\
go mod vendor; \
extraargs=""; \
if [ "$(OUTPUT_FORMAT)" == "github" ]; then \
extraargs="-v"; \
fi; \
go test $$extraargs -mod=vendor -bench=. -count=$(TESTCOUNT) -benchtime=$(BENCHTIME) -run='^#' ./...
## Tools
#####################################################################
.PHONY: license-headers
license-headers: ## Update license headers.
@set -euo pipefail; \
files=$$( \
git ls-files \
'*.go' '**/*.go' \
'*.ts' '**/*.ts' \
'*.js' '**/*.js' \
'*.py' '**/*.py' \
'*.yaml' '**/*.yaml' \
'*.yml' '**/*.yml' \
); \
name=$$(git config user.name); \
if [ "$${name}" == "" ]; then \
>&2 echo "git user.name is required."; \
>&2 echo "Set it up using:"; \
>&2 echo "git config user.name \"John Doe\""; \
fi; \
for filename in $${files}; do \
if ! ( head "$${filename}" | grep -iL "Copyright" > /dev/null ); then \
autogen -i --no-code --no-tlc -c "$${name}" -l apache "$${filename}"; \
fi; \
done; \
if ! ( head Makefile | grep -iL "Copyright" > /dev/null ); then \
autogen -i --no-code --no-tlc -c "$${name}" -l apache Makefile; \
fi;
.PHONY: format
format: go-format md-format yaml-format ## Format all files
.PHONY: md-format
md-format: node_modules/.installed ## Format Markdown files.
@set -euo pipefail; \
files=$$( \
git ls-files \
'*.md' '**/*.md' \
'*.markdown' '**/*.markdown' \
); \
npx prettier --write --no-error-on-unmatched-pattern $${files}
.PHONY: yaml-format
yaml-format: node_modules/.installed ## Format YAML files.
@set -euo pipefail; \
files=$$( \
git ls-files \
'*.yml' '**/*.yml' \
'*.yaml' '**/*.yaml' \
); \
npx prettier --write --no-error-on-unmatched-pattern $${files}
.PHONY: go-format
go-format: ## Format Go files (gofumpt).
@set -euo pipefail;\
files=$$(git ls-files '*.go'); \
if [ "$${files}" != "" ]; then \
gofumpt -w $${files}; \
gci write --skip-generated -s standard -s default -s "prefix(github.com/ianlewis/todos)" $${files}; \
fi
## Linters
#####################################################################
.PHONY: lint
lint: golangci-lint yamllint actionlint markdownlint ## Run all linters.
.PHONY: actionlint
actionlint: ## Runs the actionlint linter.
@# NOTE: We need to ignore config files used in tests.
@set -euo pipefail;\
files=$$( \
git ls-files \
'.github/workflows/*.yml' \
'.github/workflows/*.yaml' \
); \
if [ "$(OUTPUT_FORMAT)" == "github" ]; then \
actionlint -format '{{range $$err := .}}::error file={{$$err.Filepath}},line={{$$err.Line}},col={{$$err.Column}}::{{$$err.Message}}%0A```%0A{{replace $$err.Snippet "\\n" "%0A"}}%0A```\n{{end}}' -ignore 'SC2016:' $${files}; \
else \
actionlint $${files}; \
fi
.PHONY: markdownlint
markdownlint: node_modules/.installed ## Runs the markdownlint linter.
@set -euo pipefail;\
files=$$( \
git ls-files \
'*.md' '**/*.md' \
'*.markdown' '**/*.markdown' \
); \
if [ "$(OUTPUT_FORMAT)" == "github" ]; then \
exit_code=0; \
while IFS="" read -r p && [ -n "$$p" ]; do \
file=$$(echo "$$p" | jq -c -r '.fileName // empty'); \
line=$$(echo "$$p" | jq -c -r '.lineNumber // empty'); \
endline=$${line}; \
message=$$(echo "$$p" | jq -c -r '.ruleNames[0] + "/" + .ruleNames[1] + " " + .ruleDescription + " [Detail: \"" + .errorDetail + "\", Context: \"" + .errorContext + "\"]"'); \
exit_code=1; \
echo "::error file=$${file},line=$${line},endLine=$${endline}::$${message}"; \
done <<< "$$(npx markdownlint --dot --json $${files} 2>&1 | jq -c '.[]')"; \
exit "$${exit_code}"; \
else \
npx markdownlint --dot $${files}; \
fi
.PHONY: yamllint
yamllint: .venv/.installed ## Runs the yamllint linter.
@set -euo pipefail;\
extraargs=""; \
files=$$( \
git ls-files \
'*.yml' '**/*.yml' \
'*.yaml' '**/*.yaml' \
); \
if [ "$(OUTPUT_FORMAT)" == "github" ]; then \
extraargs="-f github"; \
fi; \
.venv/bin/yamllint --strict -c .yamllint.yaml $${extraargs} $${files}
.PHONY: golangci-lint
golangci-lint: ## Runs the golangci-lint linter.
@golangci-lint run -c .golangci.yml ./...
## Documentation
#####################################################################
SUPPORTED_LANGUAGES.md: node_modules/.installed internal/scanner/languages.go ## Supported languages documentation.
@set -euo pipefail;\
go mod vendor; \
go run -mod=vendor ./internal/cmd/genlangdocs | ./node_modules/.bin/prettier --parser markdown > $@
## Maintenance
#####################################################################
.PHONY: clean
clean: ## Delete temporary files.
rm -rf \
.venv \
node_modules \
vendor \
coverage.out