forked from rancher/terraform-provider-rancher2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GNUmakefile
82 lines (62 loc) · 2.09 KB
/
GNUmakefile
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
GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
PKG_NAME=rancher2
TEST?="./${PKG_NAME}"
PROVIDER_NAME=terraform-provider-rancher2
default: build
build: validate
@sh -c "'$(CURDIR)/scripts/gobuild.sh'"
docker-build:
@sh -c "'$(CURDIR)/scripts/gobuild_docker.sh'"
build-rancher: validate-rancher
@sh -c "'$(CURDIR)/scripts/gobuild.sh'"
validate-rancher: validate test
validate: fmtcheck vet lint
package-rancher:
@sh -c "'$(CURDIR)/scripts/gopackage.sh'"
test: fmtcheck
@echo "==> Running testing..."
go test $(TEST) || exit 1
echo $(TEST) | \
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
testacc:
@sh -c "'$(CURDIR)/scripts/gotestacc.sh'"
docker-testacc:
@sh -c "'$(CURDIR)/scripts/gotestacc_docker.sh'"
upgrade-rancher:
@sh -c "'$(CURDIR)/scripts/start_rancher.sh'"
vet:
@echo "==> Checking that code complies with go vet requirements..."
@go vet $$(go list ./... | grep -v vendor/) ; if [ $$? -gt 0 ]; then \
echo ""; \
echo "Vet found suspicious constructs. Please check the reported constructs"; \
echo "and fix them if necessary before submitting the code for review."; \
exit 1; \
fi
lint:
@echo "==> Checking that code complies with golint requirements..."
@GO111MODULE=off go get -u golang.org/x/lint/golint
@if [ -n "$$(golint $$(go list ./...) | grep -v 'should have comment.*or be unexported' | tee /dev/stderr)" ]; then \
echo ""; \
echo "golint found style issues. Please check the reported issues"; \
echo "and fix them if necessary before submitting the code for review."; \
exit 1; \
fi
bin:
go build -o $(PROVIDER_NAME)
fmt:
gofmt -s -w $(GOFMT_FILES)
fmtcheck:
@sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'"
errcheck:
@sh -c "'$(CURDIR)/scripts/errcheck.sh'"
vendor:
@echo "==> Updating vendor modules..."
@GO111MODULE=on go mod vendor
test-compile:
@if [ "$(TEST)" = "./..." ]; then \
echo "ERROR: Set TEST to a specific package. For example,"; \
echo " make test-compile TEST=./$(PKG_NAME)"; \
exit 1; \
fi
go test -c $(TEST) $(TESTARGS)
.PHONY: build test testacc vet fmt fmtcheck errcheck vendor-status test-compile bin vendor