Makefile 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # Copyright (C) 2015 The GoHBase Authors. All rights reserved.
  2. # This file is part of GoHBase.
  3. # Use of this source code is governed by the Apache License 2.0
  4. # that can be found in the COPYING file.
  5. GO := go
  6. TEST_TIMEOUT := 30s
  7. INTEGRATION_TIMEOUT := 120s
  8. GOTEST_FLAGS := -v
  9. GOLINT := golint
  10. all: install
  11. install:
  12. $(GO) install ./...
  13. check: vet fmtcheck lint test
  14. jenkins: check integration
  15. COVER_PKGS := `find ./* -name '*_test.go' ! -path "./test/mock/*" | xargs -I{} dirname {} | sort -u`
  16. COVER_MODE := count
  17. coverdata:
  18. echo 'mode: $(COVER_MODE)' >coverage.out
  19. for dir in $(COVER_PKGS); do \
  20. $(GO) test -covermode=$(COVER_MODE) -tags=testing -coverprofile=cov.out-t $$dir || exit; \
  21. tail -n +2 cov.out-t >> coverage.out && \
  22. rm cov.out-t; \
  23. done;
  24. coverage: coverdata
  25. $(GO) tool cover -html=coverage.out
  26. rm -f coverage.out
  27. fmtcheck:
  28. errors=`gofmt -l .`; if test -n "$$errors"; then echo Check these files for style errors:; echo "$$errors"; exit 1; fi
  29. find . -name '*.go' ! -path "./pb/*" ! -path "./test/mock/*" ! -path './gen.go' -exec ./check_line_len.awk {} +
  30. vet:
  31. $(GO) vet ./...
  32. lint:
  33. find ./* -type d ! -name pb ! -name mock ! -path "./test/mock/*" | xargs -L 1 $(GOLINT) &>lint; :
  34. if test -s lint; then echo Check these packages for golint:; cat lint; rm lint; exit 1; else rm lint; fi
  35. # The above is ugly, but unfortunately golint doesn't exit 1 when it finds
  36. # lint. See https://github.com/golang/lint/issues/65
  37. test:
  38. $(GO) test $(GOTEST_FLAGS) -race -timeout=$(TEST_TIMEOUT) -tags=testing ./...
  39. integration:
  40. $(GO) test $(GOTEST_FLAGS) -race -timeout=$(INTEGRATION_TIMEOUT) -tags=integration
  41. .PHONY: all check coverage coverdata fmtcheck install integration jenkins lint test vet