]> git.immae.eu Git - github/fretlink/terraform-provider-mailgun.git/blame - GNUmakefile
fix create
[github/fretlink/terraform-provider-mailgun.git] / GNUmakefile
CommitLineData
e17f219a
AG
1TEST?=$$(go list ./... |grep -v 'vendor')
2GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
3PKG_NAME=mailgun
4
5default: build
6
7build: fmtcheck
8 go install
9
10test: fmtcheck
11 go test -i $(TEST) || exit 1
12 echo $(TEST) | \
13 xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
14
15testacc: fmtcheck
16 TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m
17
18vet:
19 @echo "go vet ."
20 @go vet $$(go list ./... | grep -v vendor/) ; if [ $$? -eq 1 ]; then \
21 echo ""; \
22 echo "Vet found suspicious constructs. Please check the reported constructs"; \
23 echo "and fix them if necessary before submitting the code for review."; \
24 exit 1; \
25 fi
26
27fmt:
28 gofmt -w $(GOFMT_FILES)
29
30fmtcheck:
31 @sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'"
32
33errcheck:
34 @sh -c "'$(CURDIR)/scripts/errcheck.sh'"
35
36
37test-compile:
38 @if [ "$(TEST)" = "./..." ]; then \
39 echo "ERROR: Set TEST to a specific package. For example,"; \
40 echo " make test-compile TEST=./$(PKG_NAME)"; \
41 exit 1; \
42 fi
43 go test -c $(TEST) $(TESTARGS)
44