1
0
vault-redux/Makefile

84 lines
2.8 KiB
Makefile
Raw Normal View History

TEST?=$$(go list ./... | grep -v /vendor/)
2015-03-04 10:14:18 +03:00
VETARGS?=-asmdecl -atomic -bool -buildtags -copylocks -methods -nilfunc -printf -rangeloops -shift -structtags -unsafeptr
EXTERNAL_TOOLS=\
2017-06-01 17:18:40 +03:00
github.com/mitchellh/gox \
github.com/kardianos/govendor
2016-04-28 03:47:44 +03:00
BUILD_TAGS?=vault
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
2015-03-04 10:14:18 +03:00
2017-02-06 04:30:40 +03:00
default: dev
2015-03-04 10:14:18 +03:00
# bin generates the releaseable binaries for Vault
bin: fmtcheck generate
2016-04-28 19:54:34 +03:00
@CGO_ENABLED=0 BUILD_TAGS='$(BUILD_TAGS)' sh -c "'$(CURDIR)/scripts/build.sh'"
2015-03-04 10:14:18 +03:00
# dev creates binaries for testing Vault locally. These are put
2017-02-06 04:30:40 +03:00
# into ./bin/ as well as $GOPATH/bin, except for quickdev which
# is only put into /bin/
quickdev: generate
@CGO_ENABLED=0 go build -i -tags='$(BUILD_TAGS)' -o bin/vault
dev: fmtcheck generate
2016-04-28 19:54:34 +03:00
@CGO_ENABLED=0 BUILD_TAGS='$(BUILD_TAGS)' VAULT_DEV_BUILD=1 sh -c "'$(CURDIR)/scripts/build.sh'"
2016-05-10 06:17:38 +03:00
dev-dynamic: generate
@CGO_ENABLED=1 BUILD_TAGS='$(BUILD_TAGS)' VAULT_DEV_BUILD=1 sh -c "'$(CURDIR)/scripts/build.sh'"
2015-03-04 10:14:18 +03:00
# test runs the unit tests and vets the code
test: fmtcheck generate
2017-03-15 21:38:29 +03:00
CGO_ENABLED=0 VAULT_TOKEN= VAULT_ACC= go test -tags='$(BUILD_TAGS)' $(TEST) $(TESTARGS) -timeout=20m -parallel=4
2015-03-04 10:14:18 +03:00
testcompile: fmtcheck generate
@for pkg in $(TEST) ; do \
go test -v -c -tags='$(BUILD_TAGS)' $$pkg -parallel=4 ; \
done
2015-03-20 19:59:48 +03:00
# testacc runs acceptance tests
testacc: fmtcheck generate
2015-03-20 19:59:48 +03:00
@if [ "$(TEST)" = "./..." ]; then \
echo "ERROR: Set TEST to a specific package"; \
exit 1; \
fi
2016-04-28 03:47:44 +03:00
VAULT_ACC=1 go test -tags='$(BUILD_TAGS)' $(TEST) -v $(TESTARGS) -timeout 45m
2015-03-20 19:59:48 +03:00
2015-03-04 10:14:18 +03:00
# testrace runs the race checker
testrace: fmtcheck generate
CGO_ENABLED=1 VAULT_TOKEN= VAULT_ACC= go test -tags='$(BUILD_TAGS)' -race $(TEST) $(TESTARGS) -timeout=45m -parallel=4
2015-03-04 10:14:18 +03:00
cover:
./scripts/coverage.sh --html
2015-03-04 10:14:18 +03:00
# vet runs the Go source code static analysis tool `vet` to find
# any common errors.
vet:
@go list -f '{{.Dir}}' ./... | grep -v /vendor/ \
| grep -v '.*github.com/hashicorp/vault$$' \
| xargs go tool vet ; if [ $$? -eq 1 ]; then \
echo ""; \
echo "Vet found suspicious constructs. Please check the reported constructs"; \
echo "and fix them if necessary before submitting the code for reviewal."; \
fi
2015-03-04 10:14:18 +03:00
# generate runs `go generate` to build the dynamically generated
# source files.
generate:
go generate $(go list ./... | grep -v /vendor/)
2015-03-04 10:14:18 +03:00
# bootstrap the build by downloading additional tools
bootstrap:
@for tool in $(EXTERNAL_TOOLS) ; do \
2017-06-01 17:18:40 +03:00
echo "Installing/Updating $$tool" ; \
go get -u $$tool; \
done
2016-10-20 19:39:19 +03:00
proto:
2017-01-06 23:11:51 +03:00
protoc -I helper/forwarding -I vault -I ../../.. vault/*.proto --go_out=plugins=grpc:vault
2016-10-20 19:39:19 +03:00
protoc -I helper/forwarding -I vault -I ../../.. helper/forwarding/types.proto --go_out=plugins=grpc:helper/forwarding
fmtcheck:
@sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'"
fmt:
gofmt -w $(GOFMT_FILES)
.PHONY: bin default generate test vet bootstrap fmt fmtcheck