terraform/Makefile

45 lines
1.0 KiB
Makefile
Raw Normal View History

2014-05-23 01:56:28 +02:00
TEST?=./...
default: test
bin: config/y.go generate
@sh -c "'$(CURDIR)/scripts/build.sh'"
dev: config/y.go generate
@TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'"
2014-07-28 19:53:36 +02:00
test: config/y.go generate
2014-09-16 21:02:35 +02:00
TF_ACC= go test $(TEST) $(TESTARGS) -timeout=10s -parallel=4
2014-05-23 01:56:28 +02:00
testacc: config/y.go generate
@if [ "$(TEST)" = "./..." ]; then \
echo "ERROR: Set TEST to a specific package"; \
exit 1; \
fi
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 45m
testrace: config/y.go generate
2014-07-10 22:33:57 +02:00
TF_ACC= go test -race $(TEST) $(TESTARGS)
2014-07-01 19:04:23 +02:00
2014-08-19 18:56:50 +02:00
updatedeps: config/y.go
go get -u golang.org/x/tools/cmd/stringer
2015-01-11 00:24:38 +01:00
# Go 1.4 changed the format of `go get` a bit by requiring the
# canonical full path. We work around this and just force.
@if [ $(shell go version | cut -f3 -d" " | cut -f2 -d.) -lt 4 ]; then \
go get -u -v ./...; \
else \
go get -f -u -v ./...; \
fi
2014-06-26 19:33:39 +02:00
2014-07-23 00:23:05 +02:00
config/y.go: config/expr.y
cd config/ && \
go tool yacc -p "expr" expr.y
2014-05-23 01:56:28 +02:00
clean:
2014-08-05 19:39:18 +02:00
rm config/y.go
2014-05-23 01:56:28 +02:00
generate:
go generate ./...
.PHONY: bin clean default generate test updatedeps