-
Notifications
You must be signed in to change notification settings - Fork 78
/
Makefile
59 lines (48 loc) · 2.04 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
TESTTIMEOUT=60m
TESTFILTER=
TEST?=$$(go list ./... |grep -v 'vendor'|grep -v 'utils')
TESTARGS='-v'
default:
@echo "==> Type make <thing> to run tasks"
@echo
@echo "Thing is one of:"
@echo "docs fmt fmtcheck fumpt lint test testdeploy tfclean tools"
docs:
@echo "==> Updating documentation..."
find . | egrep ".md" | grep -v README.md | sort | while read f; do terrafmt fmt $$f; done
terraform-docs -c .tfdocs-config.yml .
fmt:
@echo "==> Fixing source code with gofmt..."
find ./tests -name '*.go' | grep -v vendor | xargs gofmt -s -w
@echo "==> Fixing Terraform code with terraform fmt..."
terraform fmt -recursive
@echo "==> Fixing embedded Terraform with terrafmt..."
find . | egrep ".md|.tf" | grep -v README.md | sort | while read f; do terrafmt fmt $$f; done
fmtcheck:
@echo "==> Checking source code with gofmt..."
@sh "$(CURDIR)/scripts/gofmtcheck.sh"
@echo "==> Checking source code with terraform fmt..."
terraform fmt -check -recursive
fumpt:
@echo "==> Fixing source code with Gofumpt..."
find ./tests -name '*.go' | grep -v vendor | xargs gofumpt -w
lint:
cd tests && golangci-lint run
test: fmtcheck
cd tests && go test $(TEST) $(TESTARGS) -run ^Test$(TESTFILTER) -timeout=$(TESTTIMEOUT)
testdeploy: fmtcheck
cd tests && TERRATEST_DEPLOY=1 go test $(TEST) $(TESTARGS) -run ^TestDeploy$(TESTFILTER) -timeout $(TESTTIMEOUT)
tfclean:
@echo "==> Cleaning terraform files..."
find . -type d -name '.terraform' | xargs rm -vrf
find . -type f -name 'tfplan' | xargs rm -vf
find . -type f -name 'terraform.tfstate*' | xargs rm -vf
find . -type f -name '.terraform.lock.hcl' | xargs rm -vf
tools:
go install mvdan.cc/gofumpt@latest
go install github.com/katbyte/terrafmt@latest
go install github.com/terraform-docs/[email protected]
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $$(go env GOPATH || $$GOPATH)/bin v1.52.2
# Makefile targets are files, but we aren't using it like this,
# so have to declare PHONY targets
.PHONY: docs fmt fmtcheck fumpt lint test testdeploy tfclean tools