37 lines
961 B
Makefile
37 lines
961 B
Makefile
TEST?=./...
|
|
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
|
|
|
|
default: fmt test testrace vet
|
|
|
|
# test runs the test suite and vets the code
|
|
test: get-deps fmtcheck
|
|
@golint ./...
|
|
@echo "==> Running Tests"
|
|
@go list $(TEST) | xargs -n1 go test -timeout=60s -parallel=10 $(TESTARGS)
|
|
|
|
# testrace runs the race checker
|
|
testrace:
|
|
@go list $(TEST) | xargs -n1 go test -race $(TESTARGS)
|
|
|
|
# vet runs the Go source code static analysis tool `vet` to find
|
|
# any common errors.
|
|
vet:
|
|
@echo "==> Running Go Vet"
|
|
@go vet $$(go list ./... | grep -v vendor/) ; 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 review."; \
|
|
exit 1; \
|
|
fi
|
|
|
|
get-deps:
|
|
@echo "==> Fetching dependencies"
|
|
@go get -v $(TEST)
|
|
@go get -u github.com/golang/lint/golint
|
|
|
|
|
|
fmt:
|
|
gofmt -w $(GOFMT_FILES)
|
|
|
|
fmtcheck:
|
|
@sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'"
|