2014-05-23 01:56:28 +02:00
|
|
|
TEST?=./...
|
2015-01-16 22:20:32 +01:00
|
|
|
VETARGS?=-asmdecl -atomic -bool -buildtags -copylocks -methods -nilfunc -printf -rangeloops -shift -structtags -unsafeptr
|
2014-05-23 01:56:28 +02:00
|
|
|
|
2014-05-24 02:00:51 +02:00
|
|
|
default: test
|
|
|
|
|
2015-01-27 03:19:22 +01:00
|
|
|
# bin generates the releaseable binaries for Terraform
|
2015-01-13 19:32:03 +01:00
|
|
|
bin: generate
|
2014-11-26 00:29:15 +01:00
|
|
|
@sh -c "'$(CURDIR)/scripts/build.sh'"
|
2014-06-07 05:25:17 +02:00
|
|
|
|
2015-01-27 03:19:22 +01:00
|
|
|
# dev creates binaries for testing Terraform locally. These are put
|
|
|
|
# into ./bin/ as well as $GOPATH/bin
|
2015-01-13 19:32:03 +01:00
|
|
|
dev: generate
|
2014-11-26 00:29:15 +01:00
|
|
|
@TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'"
|
2014-07-28 19:53:36 +02:00
|
|
|
|
2015-03-06 18:05:00 +01:00
|
|
|
quickdev: generate
|
|
|
|
@TF_QUICKDEV=1 TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'"
|
|
|
|
|
2015-05-26 23:12:44 +02:00
|
|
|
release: updatedeps
|
|
|
|
gox -build-toolchain
|
|
|
|
@$(MAKE) bin
|
|
|
|
|
2015-01-27 03:19:22 +01:00
|
|
|
# test runs the unit tests and vets the code
|
2015-01-13 19:32:03 +01:00
|
|
|
test: generate
|
2015-01-24 16:57:15 +01:00
|
|
|
TF_ACC= go test $(TEST) $(TESTARGS) -timeout=30s -parallel=4
|
2015-01-16 22:20:32 +01:00
|
|
|
@$(MAKE) vet
|
2014-05-23 01:56:28 +02:00
|
|
|
|
2015-01-27 03:19:22 +01:00
|
|
|
# testacc runs acceptance tests
|
2015-01-13 19:32:03 +01:00
|
|
|
testacc: generate
|
2014-07-10 20:41:18 +02:00
|
|
|
@if [ "$(TEST)" = "./..." ]; then \
|
2015-05-29 19:45:20 +02:00
|
|
|
echo "ERROR: Set TEST to a specific package. For example,"; \
|
2015-05-29 19:56:15 +02:00
|
|
|
echo " make testacc TEST=./builtin/providers/aws"; \
|
2014-07-10 20:41:18 +02:00
|
|
|
exit 1; \
|
|
|
|
fi
|
2015-05-31 16:58:14 +02:00
|
|
|
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 90m
|
2014-07-10 20:41:18 +02:00
|
|
|
|
2015-01-27 03:19:22 +01:00
|
|
|
# testrace runs the race checker
|
2015-01-13 19:32:03 +01:00
|
|
|
testrace: generate
|
2014-07-10 22:33:57 +02:00
|
|
|
TF_ACC= go test -race $(TEST) $(TESTARGS)
|
2014-07-01 19:04:23 +02:00
|
|
|
|
2015-01-27 03:19:22 +01:00
|
|
|
# updatedeps installs all the dependencies that Terraform needs to run
|
|
|
|
# and build.
|
2015-01-13 19:32:03 +01:00
|
|
|
updatedeps:
|
2015-01-21 02:36:47 +01:00
|
|
|
go get -u github.com/mitchellh/gox
|
2015-01-11 00:51:53 +01:00
|
|
|
go get -u golang.org/x/tools/cmd/stringer
|
2015-01-31 01:29:12 +01:00
|
|
|
go list ./... \
|
|
|
|
| xargs go list -f '{{join .Deps "\n"}}' \
|
2015-01-30 22:43:47 +01:00
|
|
|
| grep -v github.com/hashicorp/terraform \
|
2015-07-31 00:34:58 +02:00
|
|
|
| grep -v '/internal/' \
|
2015-01-30 22:43:47 +01:00
|
|
|
| sort -u \
|
|
|
|
| xargs go get -f -u -v
|
2014-06-26 19:33:39 +02:00
|
|
|
|
2015-02-16 18:58:17 +01:00
|
|
|
cover:
|
|
|
|
@go tool cover 2>/dev/null; if [ $$? -eq 3 ]; then \
|
|
|
|
go get -u golang.org/x/tools/cmd/cover; \
|
|
|
|
fi
|
|
|
|
go test $(TEST) -coverprofile=coverage.out
|
|
|
|
go tool cover -html=coverage.out
|
|
|
|
rm coverage.out
|
|
|
|
|
2015-01-27 03:19:22 +01:00
|
|
|
# vet runs the Go source code static analysis tool `vet` to find
|
|
|
|
# any common errors.
|
2015-01-16 22:20:32 +01:00
|
|
|
vet:
|
|
|
|
@go tool vet 2>/dev/null ; if [ $$? -eq 3 ]; then \
|
|
|
|
go get golang.org/x/tools/cmd/vet; \
|
|
|
|
fi
|
|
|
|
@echo "go tool vet $(VETARGS) ."
|
|
|
|
@go tool vet $(VETARGS) . ; if [ $$? -eq 1 ]; then \
|
|
|
|
echo ""; \
|
|
|
|
echo "Vet found suspicious constructs. Please check the reported constructs"; \
|
2015-05-29 19:45:20 +02:00
|
|
|
echo "and fix them if necessary before submitting the code for review."; \
|
2015-05-30 19:52:24 +02:00
|
|
|
exit 1; \
|
2015-01-16 22:20:32 +01:00
|
|
|
fi
|
|
|
|
|
2015-01-27 03:19:22 +01:00
|
|
|
# generate runs `go generate` to build the dynamically generated
|
|
|
|
# source files.
|
2015-01-11 00:51:53 +01:00
|
|
|
generate:
|
|
|
|
go generate ./...
|
|
|
|
|
2015-01-16 22:20:32 +01:00
|
|
|
.PHONY: bin default generate test updatedeps vet
|