commit
25defb97f0
16
Makefile
16
Makefile
|
@ -1,5 +1,7 @@
|
||||||
DEPS = $(shell go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
|
DEPS = $(shell go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
|
||||||
PACKAGES = $(shell go list ./...)
|
PACKAGES = $(shell go list ./...)
|
||||||
|
VETARGS?=-asmdecl -atomic -bool -buildtags -copylocks -methods \
|
||||||
|
-nilfunc -printf -rangeloops -shift -structtags -unsafeptr
|
||||||
|
|
||||||
all: deps format
|
all: deps format
|
||||||
@mkdir -p bin/
|
@mkdir -p bin/
|
||||||
|
@ -17,6 +19,7 @@ deps:
|
||||||
test: deps
|
test: deps
|
||||||
./scripts/verify_no_uuid.sh
|
./scripts/verify_no_uuid.sh
|
||||||
go list ./... | xargs -n1 go test
|
go list ./... | xargs -n1 go test
|
||||||
|
@$(MAKE) vet
|
||||||
|
|
||||||
integ:
|
integ:
|
||||||
go list ./... | INTEG_TESTS=yes xargs -n1 go test
|
go list ./... | INTEG_TESTS=yes xargs -n1 go test
|
||||||
|
@ -29,10 +32,21 @@ format: deps
|
||||||
@echo "--> Running go fmt"
|
@echo "--> Running go fmt"
|
||||||
@go fmt $(PACKAGES)
|
@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) ."
|
||||||
|
@go tool vet $(VETARGS) . ; 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
|
||||||
|
|
||||||
web:
|
web:
|
||||||
./scripts/website_run.sh
|
./scripts/website_run.sh
|
||||||
|
|
||||||
web-push:
|
web-push:
|
||||||
./scripts/website_push.sh
|
./scripts/website_push.sh
|
||||||
|
|
||||||
.PHONY: all cov deps integ test web web-push
|
.PHONY: all cov deps integ test vet web web-push
|
||||||
|
|
Loading…
Reference in New Issue