2016-07-07 04:17:35 +02:00
|
|
|
TEST?=$$(go list ./... | grep -v '/terraform/vendor/' | grep -v '/builtin/bins/')
|
2016-02-17 22:29:51 +01:00
|
|
|
VETARGS?=-all
|
2016-05-11 00:40:02 +02:00
|
|
|
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
|
2014-05-23 01:56:28 +02:00
|
|
|
|
2016-02-22 19:35:50 +01:00
|
|
|
default: test vet
|
2014-05-24 02:00:51 +02:00
|
|
|
|
2016-06-03 02:27:31 +02:00
|
|
|
tools:
|
|
|
|
go get -u github.com/kardianos/govendor
|
|
|
|
go get -u golang.org/x/tools/cmd/stringer
|
|
|
|
go get -u golang.org/x/tools/cmd/cover
|
|
|
|
|
2015-01-27 03:19:22 +01:00
|
|
|
# bin generates the releaseable binaries for Terraform
|
2015-12-17 18:21:43 +01:00
|
|
|
bin: fmtcheck generate
|
2016-04-19 18:50:46 +02:00
|
|
|
@TF_RELEASE=1 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-12-17 18:21:43 +01:00
|
|
|
dev: fmtcheck 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
|
2016-04-09 13:56:06 +02:00
|
|
|
@TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'"
|
2015-03-06 18:05:00 +01:00
|
|
|
|
2015-11-17 15:43:36 +01:00
|
|
|
# Shorthand for quickly building the core of Terraform. Note that some
|
|
|
|
# changes will require a rebuild of everything, in which case the dev
|
|
|
|
# target should be used.
|
2016-04-13 15:40:35 +02:00
|
|
|
core-dev: generate
|
2016-04-05 04:11:11 +02:00
|
|
|
go install -tags 'core' github.com/hashicorp/terraform
|
2015-11-17 15:43:36 +01:00
|
|
|
|
2016-01-22 00:00:47 +01:00
|
|
|
# Shorthand for quickly testing the core of Terraform (i.e. "not providers")
|
|
|
|
core-test: generate
|
2016-07-07 04:17:35 +02:00
|
|
|
@echo "Testing core packages..." && \
|
2016-07-07 20:11:28 +02:00
|
|
|
go test -tags 'core' $(TESTARGS) $(shell go list ./... | grep -v -E 'terraform/(builtin|vendor)')
|
2016-01-22 00:00:47 +01:00
|
|
|
|
2015-10-11 23:24:23 +02:00
|
|
|
# Shorthand for building and installing just one plugin for local testing.
|
|
|
|
# Run as (for example): make plugin-dev PLUGIN=provider-aws
|
2016-06-11 14:27:08 +02:00
|
|
|
plugin-dev: generate
|
2016-02-20 00:57:39 +01:00
|
|
|
go install github.com/hashicorp/terraform/builtin/bins/$(PLUGIN)
|
2015-10-11 23:24:23 +02:00
|
|
|
mv $(GOPATH)/bin/$(PLUGIN) $(GOPATH)/bin/terraform-$(PLUGIN)
|
|
|
|
|
2016-01-29 20:53:56 +01:00
|
|
|
# test runs the unit tests
|
2015-12-17 18:21:43 +01:00
|
|
|
test: fmtcheck generate
|
2016-02-20 00:57:39 +01:00
|
|
|
TF_ACC= go test $(TEST) $(TESTARGS) -timeout=30s -parallel=4
|
2014-05-23 01:56:28 +02:00
|
|
|
|
2015-01-27 03:19:22 +01:00
|
|
|
# testacc runs acceptance tests
|
2015-12-17 18:21:43 +01:00
|
|
|
testacc: fmtcheck 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
|
2016-02-20 00:57:39 +01:00
|
|
|
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m
|
2014-07-10 20:41:18 +02:00
|
|
|
|
2015-01-27 03:19:22 +01:00
|
|
|
# testrace runs the race checker
|
2015-12-17 18:21:43 +01:00
|
|
|
testrace: fmtcheck generate
|
2016-02-20 00:57:39 +01:00
|
|
|
TF_ACC= go test -race $(TEST) $(TESTARGS)
|
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
|
2016-02-20 00:57:39 +01:00
|
|
|
go test $(TEST) -coverprofile=coverage.out
|
|
|
|
go tool cover -html=coverage.out
|
2015-02-16 18:58:17 +01:00
|
|
|
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:
|
|
|
|
@echo "go tool vet $(VETARGS) ."
|
2016-02-20 00:57:39 +01:00
|
|
|
@go tool vet $(VETARGS) $$(ls -d */ | grep -v vendor) ; if [ $$? -eq 1 ]; then \
|
2015-01-16 22:20:32 +01:00
|
|
|
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:
|
2016-01-29 20:53:56 +01:00
|
|
|
@which stringer ; if [ $$? -ne 0 ]; then \
|
|
|
|
go get -u golang.org/x/tools/cmd/stringer; \
|
|
|
|
fi
|
2016-07-07 04:17:35 +02:00
|
|
|
go generate $$(go list ./... | grep -v /terraform/vendor/)
|
2016-04-05 04:11:11 +02:00
|
|
|
@go fmt command/internal_plugin_list.go > /dev/null
|
2015-01-11 00:51:53 +01:00
|
|
|
|
2015-12-17 18:21:43 +01:00
|
|
|
fmt:
|
2016-05-11 00:40:02 +02:00
|
|
|
gofmt -w $(GOFMT_FILES)
|
2015-12-17 18:21:43 +01:00
|
|
|
|
|
|
|
fmtcheck:
|
|
|
|
@sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'"
|
|
|
|
|
2016-06-03 02:27:31 +02:00
|
|
|
.PHONY: bin default generate test vet fmt fmtcheck tools
|