2016-02-05 14:18:11 -05:00
|
|
|
TEST?=$(shell go list ./... | grep -v vendor)
|
2016-04-07 19:34:54 -04:00
|
|
|
VET?=$(shell ls -d */ | grep -v vendor | grep -v website)
|
2015-08-07 02:45:39 -04:00
|
|
|
# Get the current full sha from git
|
|
|
|
GITSHA:=$(shell git rev-parse HEAD)
|
|
|
|
# Get the current local branch name from git (if we can, this may be blank)
|
|
|
|
GITBRANCH:=$(shell git symbolic-ref --short HEAD 2>/dev/null)
|
2016-11-01 16:48:10 -04:00
|
|
|
GOFMT_FILES?=$$(find . -not -path "./vendor/*" -name "*.go")
|
2016-11-01 16:49:13 -04:00
|
|
|
|
2016-02-05 14:18:11 -05:00
|
|
|
default: deps generate test dev
|
2013-03-23 03:48:20 -04:00
|
|
|
|
2015-08-21 21:37:51 -04:00
|
|
|
ci: deps test
|
2015-08-07 02:45:39 -04:00
|
|
|
|
2016-08-14 09:28:29 -04:00
|
|
|
release: deps test releasebin package ## Build a release build
|
2015-08-07 02:45:39 -04:00
|
|
|
|
2016-08-14 09:28:29 -04:00
|
|
|
bin: deps ## Build debug/test build
|
2015-10-14 00:54:01 -04:00
|
|
|
@echo "WARN: 'make bin' is for debug / test builds only. Use 'make release' for release builds."
|
2016-02-24 02:05:37 -05:00
|
|
|
@GO15VENDOREXPERIMENT=1 sh -c "$(CURDIR)/scripts/build.sh"
|
2015-10-07 18:33:01 -04:00
|
|
|
|
|
|
|
releasebin: deps
|
2016-04-21 16:19:43 -04:00
|
|
|
@grep 'const VersionPrerelease = "dev"' version/version.go > /dev/null ; if [ $$? -eq 0 ]; then \
|
|
|
|
echo "ERROR: You must remove prerelease tags from version/version.go prior to release."; \
|
2015-08-07 02:45:39 -04:00
|
|
|
exit 1; \
|
|
|
|
fi
|
2016-02-24 02:05:37 -05:00
|
|
|
@GO15VENDOREXPERIMENT=1 sh -c "$(CURDIR)/scripts/build.sh"
|
2013-09-17 07:35:07 -04:00
|
|
|
|
2016-02-17 23:11:25 -05:00
|
|
|
package:
|
|
|
|
$(if $(VERSION),,@echo 'VERSION= needed to release; Use make package skip compilation'; exit 1)
|
|
|
|
@sh -c "$(CURDIR)/scripts/dist.sh $(VERSION)"
|
|
|
|
|
2015-08-07 02:45:39 -04:00
|
|
|
deps:
|
2016-02-05 14:18:11 -05:00
|
|
|
go get github.com/mitchellh/gox
|
|
|
|
go get golang.org/x/tools/cmd/stringer
|
2016-10-05 19:14:02 -04:00
|
|
|
go get github.com/kardianos/govendor
|
2016-10-05 17:15:57 -04:00
|
|
|
govendor sync
|
2015-08-07 02:45:39 -04:00
|
|
|
|
2016-08-14 09:28:29 -04:00
|
|
|
dev: deps ## Build and install a development build
|
2016-04-21 16:19:43 -04:00
|
|
|
@grep 'const VersionPrerelease = ""' version/version.go > /dev/null ; if [ $$? -eq 0 ]; then \
|
|
|
|
echo "ERROR: You must add prerelease tags to version/version.go prior to making a dev build."; \
|
2015-08-07 02:45:39 -04:00
|
|
|
exit 1; \
|
|
|
|
fi
|
2016-02-24 02:05:37 -05:00
|
|
|
@PACKER_DEV=1 GO15VENDOREXPERIMENT=1 sh -c "$(CURDIR)/scripts/build.sh"
|
2013-08-13 21:42:08 -04:00
|
|
|
|
2016-08-14 09:28:29 -04:00
|
|
|
fmt: ## Format Go code
|
2016-11-01 16:48:10 -04:00
|
|
|
@gofmt -w -s $(GOFMT_FILES)
|
|
|
|
|
|
|
|
fmt-check: ## Check go code formatting
|
|
|
|
$(CURDIR)/scripts/gofmtcheck.sh $(GOFMT_FILES)
|
2016-02-12 14:37:49 -05:00
|
|
|
|
2016-03-10 20:41:28 -05:00
|
|
|
# Install js-beautify with npm install -g js-beautify
|
|
|
|
fmt-examples:
|
|
|
|
find examples -name *.json | xargs js-beautify -r -s 2 -n -eol "\n"
|
|
|
|
|
2015-05-26 16:26:22 -04:00
|
|
|
# generate runs `go generate` to build the dynamically generated
|
|
|
|
# source files.
|
2016-08-14 09:28:29 -04:00
|
|
|
generate: deps ## Generate dynamically generated code
|
2016-02-05 14:18:11 -05:00
|
|
|
go generate .
|
2016-09-29 17:20:47 -04:00
|
|
|
gofmt -w command/plugin.go
|
2015-05-26 16:26:22 -04:00
|
|
|
|
2016-11-01 16:49:13 -04:00
|
|
|
test: deps fmt-check ## Run unit tests
|
2016-05-07 02:15:05 -04:00
|
|
|
@go test $(TEST) $(TESTARGS) -timeout=2m
|
2016-04-07 19:34:54 -04:00
|
|
|
@go tool vet $(VET) ; if [ $$? -eq 1 ]; then \
|
2015-08-07 02:45:39 -04:00
|
|
|
echo "ERROR: Vet found problems in the code."; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
2013-07-18 10:26:36 -04:00
|
|
|
|
2015-05-26 16:26:22 -04:00
|
|
|
# testacc runs acceptance tests
|
2016-08-14 09:28:29 -04:00
|
|
|
testacc: deps generate ## Run acceptance tests
|
2015-08-07 02:45:39 -04:00
|
|
|
@echo "WARN: Acceptance tests will take a long time to run and may cost money. Ctrl-C if you want to cancel."
|
2016-02-08 23:02:56 -05:00
|
|
|
PACKER_ACC=1 go test -v $(TEST) $(TESTARGS) -timeout=45m
|
2015-05-26 16:26:22 -04:00
|
|
|
|
2016-08-14 09:28:29 -04:00
|
|
|
testrace: deps ## Test for race conditions
|
2016-05-07 02:15:05 -04:00
|
|
|
@go test -race $(TEST) $(TESTARGS) -timeout=2m
|
2013-03-24 17:47:59 -04:00
|
|
|
|
2014-09-02 18:13:55 -04:00
|
|
|
updatedeps:
|
2015-06-15 16:50:01 -04:00
|
|
|
go get -u github.com/mitchellh/gox
|
|
|
|
go get -u golang.org/x/tools/cmd/stringer
|
2016-10-03 16:49:46 -04:00
|
|
|
@echo "INFO: Packer deps are managed by govendor. See CONTRIBUTING.md"
|
2015-01-30 07:03:25 -05:00
|
|
|
|
2016-08-14 09:28:29 -04:00
|
|
|
help:
|
|
|
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
|
|
|
|
2016-03-10 20:41:28 -05:00
|
|
|
.PHONY: bin checkversion ci default deps fmt fmt-examples generate releasebin test testacc testrace updatedeps
|