mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-29 10:09:26 -04:00
Since the fork mitchellh/gophercloud-fork-40444fb is used for gophercloud the folder rackspace/gophercloud does not exist and the version fix does not have to happen. Signed-off-by: BlackEagle <ike.devolder@gmail.com>
22 lines
359 B
Makefile
22 lines
359 B
Makefile
TEST?=./...
|
|
|
|
default: test
|
|
|
|
bin:
|
|
@sh -c "$(CURDIR)/scripts/build.sh"
|
|
|
|
dev:
|
|
@TF_DEV=1 sh -c "$(CURDIR)/scripts/build.sh"
|
|
|
|
test:
|
|
go test $(TEST) $(TESTARGS) -timeout=10s
|
|
|
|
testrace:
|
|
go test -race $(TEST) $(TESTARGS)
|
|
|
|
updatedeps:
|
|
go get -d -v -p 2 ./...
|
|
@sh -c "go get -u -v -p 2 ./...; exit 0"
|
|
go get -d -v -p 2 ./...
|
|
|
|
.PHONY: bin default test updatedeps
|