open-nomad/GNUmakefile

78 lines
2.1 KiB
Makefile
Raw Normal View History

2016-02-12 18:36:11 +00:00
PACKAGES = $(shell go list ./... | grep -v '/vendor/')
2015-06-01 11:46:21 +00:00
VETARGS?=-asmdecl -atomic -bool -buildtags -copylocks -methods \
-nilfunc -printf -rangeloops -shift -structtags -unsafeptr
2015-09-14 02:04:06 +00:00
EXTERNAL_TOOLS=\
github.com/tools/godep \
github.com/mitchellh/gox \
golang.org/x/tools/cmd/cover \
golang.org/x/tools/cmd/vet \
github.com/axw/gocov/gocov \
gopkg.in/matm/v1/gocov-html
2015-09-14 02:04:06 +00:00
GOFILES_NOVENDOR = $(shell find . -type f -name '*.go' -not -path "./vendor/*")
2015-09-30 19:39:05 +00:00
all: test
2015-06-01 11:46:21 +00:00
2016-02-12 18:02:16 +00:00
dev: format
@NOMAD_DEV=1 sh -c "'$(PWD)/scripts/build.sh'"
2015-06-01 11:46:21 +00:00
2015-09-28 06:21:12 +00:00
bin:
@sh -c "'$(PWD)/scripts/build.sh'"
2015-09-28 06:21:00 +00:00
2016-02-12 18:02:16 +00:00
release:
2015-09-30 19:54:59 +00:00
@$(MAKE) bin
2015-06-01 11:46:21 +00:00
cov:
gocov test ./... | gocov-html > /tmp/coverage.html
open /tmp/coverage.html
2016-02-12 18:02:16 +00:00
test:
@sh -c "'$(PWD)/scripts/test.sh'"
2015-06-01 11:46:21 +00:00
@$(MAKE) vet
2016-02-12 18:02:16 +00:00
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)
vet:
@go tool vet 2>/dev/null ; if [ $$? -eq 3 ]; then \
go get golang.org/x/tools/cmd/vet; \
fi
@echo "--> Running go tool vet $(VETARGS) ${GOFILES_NOVENDOR}"
@go tool vet $(VETARGS) ${GOFILES_NOVENDOR} ; 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."; \
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
web:
./scripts/website_run.sh
web-push:
./scripts/website_push.sh
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
prepare_docker:
sudo stop docker
sudo rm -rf /var/lib/docker
sudo rm -f `which docker`
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt-get update
sudo apt-get install docker-engine=$(DOCKER_VERSION)-0~$(shell lsb_release -cs) -y --force-yes
2016-02-12 18:02:16 +00:00
.PHONY: all bin cov integ test vet web web-push test-nodep