-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathMakefile
More file actions
88 lines (70 loc) · 3.27 KB
/
Makefile
File metadata and controls
88 lines (70 loc) · 3.27 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
TEST?=$$(go list ./... | grep -v 'vendor')
HOSTNAME=registry.terraform.io
NAMESPACE=dell
NAME=powerstore
BINARY=terraform-provider-${NAME}
VERSION=1.2.1
OS_ARCH=linux_amd64
OPENAPI_CMD?=java -Xmx16G -jar openapi-generator-cli-6.6.0.jar
OPENAPI_GEN_DIR=clientgen
default: install
build_spec:
python3 clientgen_utils/main.py --input clientgen_utils/openapi_specs/spec_4_1.json --output clientgen_utils/openapi_specs/spec_4_1_filtered.json
build_client: build_spec
${OPENAPI_CMD} generate -i clientgen_utils/openapi_specs/spec_4_1_filtered.json \
-g go --type-mappings integer+unsigned64=uint64 -o ${OPENAPI_GEN_DIR} \
--global-property apis,models,supportingFiles=client.go:README.md:configuration.go:response.go:utils.go,modelTests=false,apiTests=false,modelDocs=false \
-c clientgen_utils/config.yaml
cd ${OPENAPI_GEN_DIR} && goimports -w .
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
install: build
rm -rfv ~/.terraform.d/plugins/${HOSTNAME}/${NAMESPACE}/${NAME}/${VERSION}/${OS_ARCH}
find examples -type d -name ".terraform" -exec rm -rfv "{}" +;
find examples -type f -name "trace.*" -delete
find examples -type f -name "*.tfstate" -delete
find examples -type f -name "*.hcl" -delete
find examples -type f -name "*.backup" -delete
rm -rf trace.*
mkdir -p ~/.terraform.d/plugins/${HOSTNAME}/${NAMESPACE}/${NAME}/${VERSION}/${OS_ARCH}
mv ${BINARY} ~/.terraform.d/plugins/${HOSTNAME}/${NAMESPACE}/${NAME}/${VERSION}/${OS_ARCH}
uninstall:
rm -rfv ~/.terraform.d/plugins/${HOSTNAME}/${NAMESPACE}/${NAME}/${VERSION}/${OS_ARCH}
find examples -type d -name ".terraform" -exec rm -rfv "{}" +;
find examples -type f -name "trace.*" -delete
find examples -type f -name "*.tfstate" -delete
find examples -type f -name "*.hcl" -delete
find examples -type f -name "*.backup" -delete
rm -rf trace.*
test: check
go test -i $(TEST) || exit 1
echo $(TEST) | xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
check:
terraform fmt -recursive examples/
gofmt -s -w .
golangci-lint run --fix --timeout 5m
go vet
gosec:
gosec -quiet -exclude=G104 ./...
testacc:
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m
generate:
go generate ./...
cover:
rm -f coverage.*
go test -coverprofile=coverage.out ./...
go tool cover -html coverage.out -o coverage.html
all: test gosec testacc generate cover install