terraform/Makefile

35 lines
661 B
Makefile
Raw Normal View History

2014-05-23 01:56:28 +02:00
TEST?=./...
default: test
2014-08-19 18:56:50 +02:00
bin: config/y.go
2014-06-26 20:11:21 +02:00
@sh -c "$(CURDIR)/scripts/build.sh"
2014-08-19 18:56:50 +02:00
dev: config/y.go
2014-07-28 19:53:36 +02:00
@TF_DEV=1 sh -c "$(CURDIR)/scripts/build.sh"
2014-08-19 18:56:50 +02:00
test: config/y.go
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
2014-08-19 18:56:50 +02:00
testacc: config/y.go
@if [ "$(TEST)" = "./..." ]; then \
echo "ERROR: Set TEST to a specific package"; \
exit 1; \
fi
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 30m
2014-08-19 18:56:50 +02:00
testrace: config/y.go
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
2014-06-26 19:33:39 +02:00
go get -u -v ./...
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
2014-08-28 18:56:41 +02:00
.PHONY: bin clean default test updatedeps