2018-05-02 13:43:14 +02:00
|
|
|
VERSION?="0.3.32"
|
2017-08-26 01:21:06 +02:00
|
|
|
TEST?=./...
|
2019-09-06 14:58:34 +02:00
|
|
|
GOFMT_FILES?=$$(find . -not -path "./vendor/*" -type f -name '*.go')
|
2018-05-02 13:43:14 +02:00
|
|
|
WEBSITE_REPO=github.com/hashicorp/terraform-website
|
2014-05-23 01:56:28 +02:00
|
|
|
|
2018-02-21 21:30:29 +01:00
|
|
|
default: test
|
2014-05-24 02:00:51 +02:00
|
|
|
|
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
|
2018-11-17 03:54:33 +01:00
|
|
|
go install -mod=vendor .
|
2014-07-28 19:53:36 +02:00
|
|
|
|
2015-03-06 18:05:00 +01:00
|
|
|
quickdev: generate
|
2018-11-17 03:54:33 +01:00
|
|
|
go install -mod=vendor .
|
2015-03-06 18:05:00 +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
|
2017-08-26 01:21:06 +02:00
|
|
|
# we run this one package at a time here because running the entire suite in
|
|
|
|
# one command creates memory usage issues when running in Travis-CI.
|
2017-06-12 16:54:04 +02:00
|
|
|
test: fmtcheck generate
|
2018-11-17 03:54:33 +01:00
|
|
|
go list -mod=vendor $(TEST) | xargs -t -n4 go test $(TESTARGS) -mod=vendor -timeout=2m -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,"; \
|
2018-11-17 03:54:33 +01:00
|
|
|
echo " make testacc TEST=./builtin/providers/test"; \
|
2014-07-10 20:41:18 +02:00
|
|
|
exit 1; \
|
|
|
|
fi
|
2018-11-17 03:54:33 +01:00
|
|
|
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -mod=vendor -timeout 120m
|
2014-07-10 20:41:18 +02:00
|
|
|
|
2017-09-19 21:00:26 +02:00
|
|
|
# e2etest runs the end-to-end tests against a generated Terraform binary
|
2019-12-12 15:26:26 +01:00
|
|
|
# and a generated terraform-bundle binary.
|
2017-09-19 21:00:26 +02:00
|
|
|
# The TF_ACC here allows network access, but does not require any special
|
2019-12-12 15:26:26 +01:00
|
|
|
# credentials.
|
2017-09-19 21:00:26 +02:00
|
|
|
e2etest: generate
|
2018-11-17 03:54:33 +01:00
|
|
|
TF_ACC=1 go test -mod=vendor -v ./command/e2etest
|
2019-12-12 15:26:26 +01:00
|
|
|
TF_ACC=1 go test -mod=vendor -v ./tools/terraform-bundle/e2etest
|
2017-09-19 21:00:26 +02:00
|
|
|
|
2016-11-24 17:44:25 +01:00
|
|
|
test-compile: fmtcheck generate
|
|
|
|
@if [ "$(TEST)" = "./..." ]; then \
|
|
|
|
echo "ERROR: Set TEST to a specific package. For example,"; \
|
2018-11-17 03:54:33 +01:00
|
|
|
echo " make test-compile TEST=./builtin/providers/test"; \
|
2016-11-24 17:44:25 +01:00
|
|
|
exit 1; \
|
|
|
|
fi
|
2019-02-01 14:18:51 +01:00
|
|
|
go test -mod=vendor -c $(TEST) $(TESTARGS)
|
2016-11-24 17:44:25 +01: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
|
2018-11-17 03:54:33 +01:00
|
|
|
TF_ACC= go test -mod=vendor -race $(TEST) $(TESTARGS)
|
2014-06-26 19:33:39 +02:00
|
|
|
|
2015-02-16 18:58:17 +01:00
|
|
|
cover:
|
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
|
|
|
# generate runs `go generate` to build the dynamically generated
|
2018-10-18 18:27:48 +02:00
|
|
|
# source files, except the protobuf stubs which are built instead with
|
|
|
|
# "make protobuf".
|
2019-10-17 22:17:23 +02:00
|
|
|
generate:
|
2019-02-06 19:51:39 +01:00
|
|
|
GOFLAGS=-mod=vendor go generate ./...
|
|
|
|
# go fmt doesn't support -mod=vendor but it still wants to populate the
|
|
|
|
# module cache with everything in go.mod even though formatting requires
|
|
|
|
# no dependencies, and so we're disabling modules mode for this right
|
|
|
|
# now until the "go fmt" behavior is rationalized to either support the
|
|
|
|
# -mod= argument or _not_ try to install things.
|
2018-11-17 03:54:33 +01:00
|
|
|
GO111MODULE=off go fmt command/internal_plugin_list.go > /dev/null
|
2015-01-11 00:51:53 +01:00
|
|
|
|
2018-10-18 18:27:48 +02:00
|
|
|
# We separate the protobuf generation because most development tasks on
|
|
|
|
# Terraform do not involve changing protobuf files and protoc is not a
|
|
|
|
# go-gettable dependency and so getting it installed can be inconvenient.
|
|
|
|
#
|
|
|
|
# If you are working on changes to protobuf interfaces you may either use
|
|
|
|
# this target or run the individual scripts below directly.
|
|
|
|
protobuf:
|
2019-09-05 14:30:48 +02:00
|
|
|
bash scripts/protobuf-check.sh
|
2018-11-19 18:39:16 +01:00
|
|
|
bash internal/tfplugin5/generate.sh
|
2018-10-18 18:27:48 +02:00
|
|
|
bash plans/internal/planproto/generate.sh
|
|
|
|
|
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'"
|
|
|
|
|
2018-05-02 13:43:14 +02:00
|
|
|
website:
|
|
|
|
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
|
|
|
|
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
|
|
|
|
git clone https://$(WEBSITE_REPO) $(GOPATH)/src/$(WEBSITE_REPO)
|
|
|
|
endif
|
|
|
|
$(eval WEBSITE_PATH := $(GOPATH)/src/$(WEBSITE_REPO))
|
|
|
|
@echo "==> Starting core website in Docker..."
|
|
|
|
@docker run \
|
|
|
|
--interactive \
|
|
|
|
--rm \
|
|
|
|
--tty \
|
|
|
|
--publish "4567:4567" \
|
|
|
|
--publish "35729:35729" \
|
|
|
|
--volume "$(shell pwd)/website:/website" \
|
|
|
|
--volume "$(shell pwd):/ext/terraform" \
|
|
|
|
--volume "$(WEBSITE_PATH)/content:/terraform-website" \
|
|
|
|
--volume "$(WEBSITE_PATH)/content/source/assets:/website/docs/assets" \
|
|
|
|
--volume "$(WEBSITE_PATH)/content/source/layouts:/website/docs/layouts" \
|
|
|
|
--workdir /terraform-website \
|
|
|
|
hashicorp/middleman-hashicorp:${VERSION}
|
|
|
|
|
|
|
|
website-test:
|
|
|
|
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
|
|
|
|
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
|
|
|
|
git clone https://$(WEBSITE_REPO) $(GOPATH)/src/$(WEBSITE_REPO)
|
|
|
|
endif
|
|
|
|
$(eval WEBSITE_PATH := $(GOPATH)/src/$(WEBSITE_REPO))
|
|
|
|
@echo "==> Testing core website in Docker..."
|
|
|
|
-@docker stop "tf-website-core-temp"
|
|
|
|
@docker run \
|
|
|
|
--detach \
|
|
|
|
--rm \
|
|
|
|
--name "tf-website-core-temp" \
|
|
|
|
--publish "4567:4567" \
|
|
|
|
--volume "$(shell pwd)/website:/website" \
|
|
|
|
--volume "$(shell pwd):/ext/terraform" \
|
|
|
|
--volume "$(WEBSITE_PATH)/content:/terraform-website" \
|
|
|
|
--volume "$(WEBSITE_PATH)/content/source/assets:/website/docs/assets" \
|
|
|
|
--volume "$(WEBSITE_PATH)/content/source/layouts:/website/docs/layouts" \
|
|
|
|
--workdir /terraform-website \
|
|
|
|
hashicorp/middleman-hashicorp:${VERSION}
|
|
|
|
$(WEBSITE_PATH)/content/scripts/check-links.sh "http://127.0.0.1:4567" "/" "/docs/providers/*"
|
|
|
|
@docker stop "tf-website-core-temp"
|
|
|
|
|
2017-02-18 00:31:20 +01:00
|
|
|
# disallow any parallelism (-j) for Make. This is necessary since some
|
|
|
|
# commands during the build process create temporary files that collide
|
|
|
|
# under parallel conditions.
|
|
|
|
.NOTPARALLEL:
|
|
|
|
|
2019-10-17 22:17:23 +02:00
|
|
|
.PHONY: bin cover default dev e2etest fmt fmtcheck generate protobuf plugin-dev quickdev test-compile test testacc testrace vendor-status website website-test
|