-
Notifications
You must be signed in to change notification settings - Fork 10
/
Makefile
78 lines (66 loc) · 2.62 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
TEST?=$$(go list ./... | grep -v 'vendor')
REGISTRY=registry.terraform.io
HOSTNAME=aidanmelen
NAME=snowsql
BINARY=terraform-provider-${NAME}
VERSION=1.3.3
OS_ARCH=darwin_amd64
.PHONY: help
help: ## This help.
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-35s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
.DEFAULT_GOAL := help
.PHONY: build
build: ## build the provider
go build -o ${BINARY}
.PHONY: clean
clean: ## clean the repo
rm terraform-provider-snowflake 2>/dev/null || true
go clean
rm -rf dist
.PHONY: docs
docs: ## generate the provider documentation
SNOWFLAKE_USER= SNOWFLAKE_ACCOUNT= tfplugindocs generate
.PHONY: install
install: build ## build and install the provider
mkdir -p ~/.terraform.d/plugins/${REGISTRY}/${HOSTNAME}/${NAME}/${VERSION}/${OS_ARCH}
mv ${BINARY} ~/.terraform.d/plugins/${REGISTRY}/${HOSTNAME}/${NAME}/${VERSION}/${OS_ARCH}
.PHONY: pre-commit
pre-commit: ## run pre-commit checks
git init
git add -A
pre-commit run -a
git add -A
.PHONY: test
test: ## run the provider unittests
go test -i $(TEST) || exit 1
echo $(TEST) | xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
.PHONY: testacc
testacc: ## run the provider acceptance tests
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 30m
.PHONY: tools
tools: ## Get the development tools
go get -u golang.org/x/lint/golint
go get golang.org/x/tools/cmd/goimports
go get github.com/bflad/tfproviderdocs
go get github.com/bflad/tfproviderlint/cmd/tfproviderlint
go get github.com/katbyte/terrafmt
go get github.com/hashicorp/terraform-plugin-docs
.PHONY: local-release
local-release: ## Release provider locally
GOOS=darwin GOARCH=amd64 go build -o ./bin/${BINARY}_${VERSION}_darwin_amd64
GOOS=freebsd GOARCH=386 go build -o ./bin/${BINARY}_${VERSION}_freebsd_386
GOOS=freebsd GOARCH=amd64 go build -o ./bin/${BINARY}_${VERSION}_freebsd_amd64
GOOS=freebsd GOARCH=arm go build -o ./bin/${BINARY}_${VERSION}_freebsd_arm
GOOS=linux GOARCH=386 go build -o ./bin/${BINARY}_${VERSION}_linux_386
GOOS=linux GOARCH=amd64 go build -o ./bin/${BINARY}_${VERSION}_linux_amd64
GOOS=linux GOARCH=arm go build -o ./bin/${BINARY}_${VERSION}_linux_arm
GOOS=openbsd GOARCH=386 go build -o ./bin/${BINARY}_${VERSION}_openbsd_386
GOOS=openbsd GOARCH=amd64 go build -o ./bin/${BINARY}_${VERSION}_openbsd_amd64
GOOS=solaris GOARCH=amd64 go build -o ./bin/${BINARY}_${VERSION}_solaris_amd64
GOOS=windows GOARCH=386 go build -o ./bin/${BINARY}_${VERSION}_windows_386
GOOS=windows GOARCH=amd64 go build -o ./bin/${BINARY}_${VERSION}_windows_amd64
.PHONY: release
release: ## Trigger a release
git checkout main
git tag v$(VERSION)
git push --tag