forked from mvisonneau/terraform-provider-updown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
95 lines (74 loc) · 3.18 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
NAME := terraform-provider-updown
VERSION := $(shell git describe --tags --abbrev=1)
FILES := $(shell git ls-files 'updown/*.go')
DEV_REPOSITORY_PATH := local.dev/mvisonneau/updown
DEV_VERSION := 0.0.1
OS_ARCH := linux_amd64
.DEFAULT_GOAL := help
.PHONY: setup
setup: ## Install required libraries/tools for build tasks
@command -v goimports 2>&1 >/dev/null || go install golang.org/x/tools/cmd/goimports@latest
@command -v gosec 2>&1 >/dev/null || go install github.com/securego/gosec/v2/cmd/[email protected]
@command -v goveralls 2>&1 >/dev/null || go install github.com/mattn/goveralls@latest
@command -v ineffassign 2>&1 >/dev/null || go install github.com/gordonklaus/[email protected]
@command -v misspell 2>&1 >/dev/null || go install github.com/client9/misspell/cmd/[email protected]
@command -v revive 2>&1 >/dev/null || go install github.com/mgechev/[email protected]
@command -v tfplugindocs 2>&1 >/dev/null || go install github.com/hashicorp/terraform-plugin-docs/cmd/[email protected]
.PHONY: fmt
fmt: setup ## Format source code
goimports -w $(FILES)
.PHONY: lint
lint: revive vet goimports ineffassign misspell gosec ## Run all lint related tests against the codebase
.PHONY: revive
revive: setup ## Test code syntax with revive
revive -config .revive.toml $(FILES)
.PHONY: vet
vet: ## Test code syntax with go vet
go vet ./...
.PHONY: goimports
goimports: setup ## Test code syntax with goimports
goimports -d $(FILES) > goimports.out
@if [ -s goimports.out ]; then cat goimports.out; rm goimports.out; exit 1; else rm goimports.out; fi
.PHONY: ineffassign
ineffassign: setup ## Test code syntax for ineffassign
ineffassign ./...
.PHONY: misspell
misspell: setup ## Test code with misspell
misspell -error $(FILES)
.PHONY: gosec
gosec: setup ## Test code for security vulnerabilities
gosec ./...
.PHONY: test
test: ## Run the tests against the codebase
go test -v -race ./...
.PHONY: generate
docs: setup ## Test code with misspell
tfplugindocs
.PHONY: build-local
build-local: ## Build the binaries using local GOOS
go build .
.PHONY: install
install: build-local ## Build and install the provider locally
mkdir -p ~/.terraform.d/plugins/$(DEV_REPOSITORY_PATH)/$(DEV_VERSION)/$(OS_ARCH)
mv $(NAME) ~/.terraform.d/plugins/$(DEV_REPOSITORY_PATH)/$(DEV_VERSION)/$(OS_ARCH)
.PHONY: build
build: ## Build the binaries
goreleaser release --snapshot --skip-publish --skip-sign --rm-dist
.PHONY: release
release: ## Build & release the binaries
goreleaser release --rm-dist
.PHONY: publish-coveralls
publish-coveralls: setup ## Publish coverage results on coveralls
goveralls -service drone.io -coverprofile=coverage.out
.PHONY: clean
clean: ## Remove binary if it exists
rm -f $(NAME)
.PHONY: coverage
coverage: ## Generates coverage report
rm -rf *.out
go test -v ./... -coverpkg=./... -coverprofile=coverage.out
.PHONY: all
all: lint test build coverage ## Test, builds and ship package for all supported platforms
.PHONY: help
help: ## Displays this help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'