open-nomad/GNUmakefile

73 lines
1.9 KiB
Makefile
Raw Normal View History

2016-02-12 18:36:11 +00:00
PACKAGES = $(shell go list ./... | grep -v '/vendor/')
2015-09-14 02:04:06 +00:00
EXTERNAL_TOOLS=\
github.com/kardianos/govendor \
2015-09-14 02:04:06 +00:00
github.com/mitchellh/gox \
golang.org/x/tools/cmd/cover \
github.com/axw/gocov/gocov \
2016-02-21 02:22:57 +00:00
gopkg.in/matm/v1/gocov-html \
2016-08-25 21:03:32 +00:00
github.com/ugorji/go/codec/codecgen
2015-09-14 02:04:06 +00:00
2015-09-30 19:39:05 +00:00
all: test
2015-06-01 11:46:21 +00:00
dev: format generate
@scripts/build-dev.sh
2015-06-01 11:46:21 +00:00
bin: generate
@sh -c "'$(PWD)/scripts/build.sh'"
2015-09-28 06:21:00 +00:00
release: generate
@sh -c "TARGETS=release '$(PWD)/scripts/build.sh'"
2015-09-30 19:54:59 +00:00
2015-06-01 11:46:21 +00:00
cov:
gocov test ./... | gocov-html > /tmp/coverage.html
open /tmp/coverage.html
test: generate
@echo "--> Running go fmt" ;
@if [ -n "`go fmt ${PACKAGES}`" ]; then \
echo "[ERR] go fmt updated formatting. Please commit formatted code first."; \
exit 1; \
fi
@sh -c "'$(PWD)/scripts/test.sh'"
2015-06-01 11:46:21 +00:00
@$(MAKE) vet
cover:
2015-06-01 11:46:21 +00:00
go list ./... | xargs -n1 go test --cover
2016-02-12 18:02:16 +00:00
format:
2015-06-01 11:46:21 +00:00
@echo "--> Running go fmt"
@go fmt $(PACKAGES)
generate:
@echo "--> Running go generate"
@go generate $(PACKAGES)
@sed -i.old -e 's|github.com/hashicorp/nomad/vendor/github.com/ugorji/go/codec|github.com/ugorji/go/codec|' nomad/structs/structs.generated.go
2015-06-01 11:46:21 +00:00
vet:
@echo "--> Running go vet $(VETARGS) ${PACKAGES}"
@go vet $(VETARGS) ${PACKAGES} ; if [ $$? -eq 1 ]; then \
2015-06-01 11:46:21 +00:00
echo ""; \
2015-12-11 23:20:32 +00:00
echo "[LINT] Vet found suspicious constructs. Please check the reported constructs"; \
echo "and fix them if necessary before submitting the code for review."; \
2017-03-03 05:03:05 +00:00
exit 1; \
2015-12-11 23:20:32 +00:00
fi
@git grep -n `echo "log"".Print"` | grep -v 'vendor/' ; if [ $$? -eq 0 ]; then \
2015-12-11 23:20:32 +00:00
echo "[LINT] Found "log"".Printf" calls. These should use Nomad's logger instead."; \
2015-06-01 11:46:21 +00:00
fi
2015-09-14 02:04:06 +00:00
# bootstrap the build by downloading additional tools
bootstrap:
@for tool in $(EXTERNAL_TOOLS) ; do \
echo "Installing $$tool" ; \
go get $$tool; \
done
install: bin/nomad
install -o root -g wheel -m 0755 ./bin/nomad /usr/local/bin/nomad
travis:
@sh -c "'$(PWD)/scripts/travis.sh'"
2016-10-22 03:34:59 +00:00
.PHONY: all bin cov integ test vet test-nodep