-
Notifications
You must be signed in to change notification settings - Fork 32
/
GNUmakefile
69 lines (54 loc) · 2.14 KB
/
GNUmakefile
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
TEST?=$$(go list ./... |grep -v 'vendor')
SWEEP_DIR?=./slack
SWEEP?=eu-west-1
GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
default: testacc bin
bin:
go install
scripts/install_plugin.sh
download:
@echo "==> Download go.mod dependencies"
@go mod download
tools: download
@echo "==> Installing tools from tools.go"
@go list -f '{{range .Imports}}{{.}} {{end}}' tools.go | xargs go install
lint: tools vet docs
@echo "==> Checking source code against linters..."
golangci-lint run -v
sweep:
@echo "WARNING: This will destroy infrastructure. Use only in development accounts."
go test $(SWEEP_DIR) -v -sweep=$(SWEEP) $(SWEEPARGS) -timeout 60m
test: lint
go test -v $(TEST)
testacc: lint
@echo "==> Running acceptance tests..."
TF_ACC=1 go test -v $(TEST)
vet:
@echo "go vet ."
@go vet $$(go list ./... | grep -v vendor/)
depscheck:
@echo "==> Checking source code with go mod tidy..."
@go mod tidy
@git diff --exit-code -- go.mod go.sum || \
(echo; echo "Unexpected difference in go.mod/go.sum files. Run 'go mod tidy' command or revert any go.mod/go.sum changes and commit."; exit 1)
docs: docs-lint docscheck
docs-lint:
@echo "==> Checking docs against linters..."
@docker run -v $(PWD):/markdown 06kellyjac/markdownlint-cli docs/ || (echo; \
echo "Unexpected issues found in docs Markdown files."; \
echo "To apply any automatic fixes, run 'make docs-lint-fix' and commit the changes."; \
exit 1)
@terrafmt diff ./docs --check --pattern '*.md' --quiet || (echo; \
echo "Unexpected differences in docs HCL formatting."; \
echo "To see the full differences, run: terrafmt diff ./docs --pattern '*.md'"; \
echo "To automatically fix the formatting, run 'make docs-lint-fix' and commit the changes."; \
exit 1)
docs-lint-fix:
@echo "==> Applying automatic docs linter fixes..."
@docker run -v $(PWD):/markdown 06kellyjac/markdownlint-cli --fix docs/
@terrafmt fmt ./docs --pattern '*.md'
docscheck:
@tfproviderdocs check \
-allowed-resource-subcategories-file docs/allowed-subcategories.txt \
-require-resource-subcategory
.PHONY: build download tools lint sweep test testacc vet depscheck docs docs-lint docs-lint-fix docscheck