This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
forked from hashicorp/terraform-provider-google
-
Notifications
You must be signed in to change notification settings - Fork 2
/
GNUmakefile
51 lines (38 loc) · 1.44 KB
/
GNUmakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
TEST?=$$(go list ./... | grep -v github.com/hashicorp/terraform-provider-google/scripts)
WEBSITE_REPO=github.com/hashicorp/terraform-website
PKG_NAME=google
DIR_NAME=google
default: build
build: lint
go install
test: lint testnolint
# Used in CI to prevent lint failures from being interpreted as test failures
testnolint:
go test $(TESTARGS) -timeout=30s $(TEST)
testacc:
TF_ACC=1 TF_SCHEMA_PANIC_ON_ERROR=1 go test $(TEST) -v $(TESTARGS) -timeout 240m -ldflags="-X=github.com/hashicorp/terraform-provider-google/version.ProviderVersion=acc"
fmt:
@echo "==> Fixing source code with gofmt..."
gofmt -w -s ./$(DIR_NAME)
# Currently required by tf-deploy compile
fmtcheck:
sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'"
vet:
go vet
lint: fmtcheck vet
test-compile:
@if [ "$(TEST)" = "./..." ]; then \
echo "ERROR: Set TEST to a specific package. For example,"; \
echo " make test-compile TEST=./$(DIR_NAME)"; \
exit 1; \
fi
go test -c $(TEST) $(TESTARGS)
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
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
docscheck:
@sh -c "'$(CURDIR)/scripts/docscheck.sh'"
.PHONY: build test testnolint testacc fmt fmtcheck vet lint test-compile website website-test docscheck