-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathMakefile
More file actions
117 lines (89 loc) · 3.25 KB
/
Copy pathMakefile
File metadata and controls
117 lines (89 loc) · 3.25 KB
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
.PHONY:
TEST?=$$(go list ./... | grep -v 'vendor'| grep -v 'scripts'| grep -v 'version')
HOSTNAME=jameswoolfenden
FULL_PKG_NAME=github.com/jameswoolfenden/pike
VERSION_PLACEHOLDER=version.ProviderVersion
NAMESPACE=dev
BINARY=pike
OS_ARCH=darwin_amd64
TERRAFORM=./terraform/
TF_TEST=./terraform_test/
default:
build:
go build -o ${BINARY}
release:
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
test:
go test $(TEST) || exit 1
echo $(TEST) | xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
# Regenerate the surface_test.go goldens (testdata/help.golden and
# testdata/api_surface.txt). Run this once to bootstrap them, and again
# after any deliberate change to the CLI surface or the exported pike
# package surface. Review the diff before committing.
goldens:
go test -run '^TestHelpGolden$$|^TestAPISurfaceGolden$$' -update .
testacc:
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m
destroy:
cd $(TERRAFORM) && terraform destroy --auto-approve
BIN=$(CURDIR)/bin
$(BIN)/%:
@echo "Installing tools from tools/tools.go"
@cat tools/tools.go | grep _ | awk -F '"' '{print $$2}' | GOBIN=$(BIN) xargs -tI {} go install {}
generate-docs:
echo "does nowt"
docs:
release-check:
goreleaser check
GITHUB_TOKEN= GITLAB_TOKEN= GITEA_TOKEN= goreleaser build --snapshot --clean
bump: release-check
git push
$(eval VERSION=$(shell git describe --tags --abbrev=0 | awk -F. '{OFS="."; $$NF+=1; print $0}'))
git tag -a $(VERSION) -m "new release"
git push origin $(VERSION)
psbump:
git push
powershell -command "./bump.ps1"
update:
go get -u
go mod tidy
pre-commit autoupdate
ghat swot -d . true --stable 14
gci:
gci -w .
fmt:
gofumpt -l -w .
schema:
wget -qO- https://schema.cloudformation.us-east-1.amazonaws.com/CloudformationSchema.zip |tar xvz -C ./src/schema
install-tools: ## Install development and security tools
@./scripts/install-tools.sh
lint: ## Run linter
golangci-lint run
vet: ## Run go vet
go vet ./...
staticcheck: ## Run staticcheck
@./scripts/run-staticcheck.sh
gosec: ## Run security scanner
gosec -quiet -exclude-generated ./...
govulncheck: ## Check for known vulnerabilities
govulncheck ./...
complexity: ## Check cyclomatic complexity
gocyclo -over 15 -avg .
check-all: ## Run all checks (vet, staticcheck, gosec, govulncheck)
@echo "Running all code checks..."
@$(MAKE) vet
@$(MAKE) staticcheck
@$(MAKE) gosec
@$(MAKE) govulncheck
@echo "All checks passed!"