mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-29 10:21:01 -06:00
3f7a117148
* Use latest in go 1.8 branch for travis * Fix ongoing vet issues Move vet step after the testing step in travis Correct Makefile vet step to check correct files
113 lines
3.6 KiB
Makefile
113 lines
3.6 KiB
Makefile
TEST?=$$(go list ./... | grep -v '/terraform/vendor/' | grep -v '/builtin/bins/')
|
|
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
|
|
|
|
default: test vet
|
|
|
|
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
|
|
|
|
# bin generates the releaseable binaries for Terraform
|
|
bin: fmtcheck generate
|
|
@TF_RELEASE=1 sh -c "'$(CURDIR)/scripts/build.sh'"
|
|
|
|
# dev creates binaries for testing Terraform locally. These are put
|
|
# into ./bin/ as well as $GOPATH/bin
|
|
dev: fmtcheck generate
|
|
@TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'"
|
|
|
|
quickdev: generate
|
|
@TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'"
|
|
|
|
# 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.
|
|
core-dev: generate
|
|
go install -tags 'core' github.com/hashicorp/terraform
|
|
|
|
# Shorthand for quickly testing the core of Terraform (i.e. "not providers")
|
|
core-test: generate
|
|
@echo "Testing core packages..." && \
|
|
go test -tags 'core' $(TESTARGS) $(shell go list ./... | grep -v -E 'terraform/(builtin|vendor)')
|
|
|
|
# Shorthand for building and installing just one plugin for local testing.
|
|
# Run as (for example): make plugin-dev PLUGIN=provider-aws
|
|
plugin-dev: generate
|
|
go install github.com/hashicorp/terraform/builtin/bins/$(PLUGIN)
|
|
mv $(GOPATH)/bin/$(PLUGIN) $(GOPATH)/bin/terraform-$(PLUGIN)
|
|
|
|
# test runs the unit tests
|
|
test: fmtcheck errcheck generate
|
|
go test -i $(TEST) || exit 1
|
|
echo $(TEST) | \
|
|
xargs -t -n4 go test $(TESTARGS) -timeout=60s -parallel=4
|
|
|
|
# testacc runs acceptance tests
|
|
testacc: fmtcheck generate
|
|
@if [ "$(TEST)" = "./..." ]; then \
|
|
echo "ERROR: Set TEST to a specific package. For example,"; \
|
|
echo " make testacc TEST=./builtin/providers/aws"; \
|
|
exit 1; \
|
|
fi
|
|
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m
|
|
|
|
test-compile: fmtcheck generate
|
|
@if [ "$(TEST)" = "./..." ]; then \
|
|
echo "ERROR: Set TEST to a specific package. For example,"; \
|
|
echo " make test-compile TEST=./builtin/providers/aws"; \
|
|
exit 1; \
|
|
fi
|
|
go test -c $(TEST) $(TESTARGS)
|
|
|
|
# testrace runs the race checker
|
|
testrace: fmtcheck generate
|
|
TF_ACC= go test -race $(TEST) $(TESTARGS)
|
|
|
|
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
|
|
|
|
# vet runs the Go source code static analysis tool `vet` to find
|
|
# any common errors.
|
|
vet:
|
|
@echo 'go vet $$(go list ./... | grep -v /terraform/vendor/)'
|
|
@go vet $$(go list ./... | grep -v /terraform/vendor/) ; if [ $$? -eq 1 ]; 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
|
|
|
|
# generate runs `go generate` to build the dynamically generated
|
|
# source files.
|
|
generate:
|
|
@which stringer > /dev/null; if [ $$? -ne 0 ]; then \
|
|
go get -u golang.org/x/tools/cmd/stringer; \
|
|
fi
|
|
go generate $$(go list ./... | grep -v /terraform/vendor/)
|
|
@go fmt command/internal_plugin_list.go > /dev/null
|
|
|
|
fmt:
|
|
gofmt -w $(GOFMT_FILES)
|
|
|
|
fmtcheck:
|
|
@sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'"
|
|
|
|
errcheck:
|
|
@sh -c "'$(CURDIR)/scripts/errcheck.sh'"
|
|
|
|
vendor-status:
|
|
@govendor status
|
|
|
|
# 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:
|
|
|
|
.PHONY: bin core-dev core-test cover default dev errcheck fmt fmtcheck generate plugin-dev quickdev test-compile test testacc testrace tools vendor-status vet
|