-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
27 lines (23 loc) · 853 Bytes
/
Makefile
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
.phony: all invalidate help
all:
@echo "Run [make help] for usage details."
invalidate:
help:
@echo "This Makefile is run by specifying a module path as a target name." ; \
echo "It takes one argument: ACTION. Value of this argument is specific to a particular module." ; \
echo "It represents the name of a Terratest test function." ; \
echo "Typically this will be: Validate, Plan, Apply, Idempotence, but it should be verified with" ; \
echo " module's main_test.go file." ; \
echo ; \
echo "Example:" ; \
echo " make examples/combined_design ACTION=Plan" ; \
echo
%: invalidate %/main.tf
@cd $@ && \
echo "::group::DOWNLOADING GO DEPENDENCIES" && \
go get -v -t -d && \
go mod tidy && \
echo "::endgroup::" && \
echo "::group::ACTION >>$(ACTION)<<" && \
go test -run $(ACTION) -timeout 60m -count=1 && \
echo "::endgroup::"