Makefile 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. # MAKEFILE
  2. #
  3. # @author Nicola Asuni <info@tecnick.com>
  4. # @link https://github.com/dgryski/go-farm
  5. #
  6. # This file is intended to be executed in a Linux-compatible system.
  7. # It also assumes that the project has been cloned in the right path under GOPATH:
  8. # $GOPATH/src/github.com/dgryski/go-farm
  9. #
  10. # ------------------------------------------------------------------------------
  11. # List special make targets that are not associated with files
  12. .PHONY: help all test format fmtcheck vet lint coverage cyclo ineffassign misspell structcheck varcheck errcheck gosimple astscan qa deps clean nuke
  13. # Use bash as shell (Note: Ubuntu now uses dash which doesn't support PIPESTATUS).
  14. SHELL=/bin/bash
  15. # CVS path (path to the parent dir containing the project)
  16. CVSPATH=github.com/dgryski
  17. # Project owner
  18. OWNER=dgryski
  19. # Project vendor
  20. VENDOR=dgryski
  21. # Project name
  22. PROJECT=go-farm
  23. # Project version
  24. VERSION=$(shell cat VERSION)
  25. # Name of RPM or DEB package
  26. PKGNAME=${VENDOR}-${PROJECT}
  27. # Current directory
  28. CURRENTDIR=$(shell pwd)
  29. # GO lang path
  30. ifneq ($(GOPATH),)
  31. ifeq ($(findstring $(GOPATH),$(CURRENTDIR)),)
  32. # the defined GOPATH is not valid
  33. GOPATH=
  34. endif
  35. endif
  36. ifeq ($(GOPATH),)
  37. # extract the GOPATH
  38. GOPATH=$(firstword $(subst /src/, ,$(CURRENTDIR)))
  39. endif
  40. # --- MAKE TARGETS ---
  41. # Display general help about this command
  42. help:
  43. @echo ""
  44. @echo "$(PROJECT) Makefile."
  45. @echo "GOPATH=$(GOPATH)"
  46. @echo "The following commands are available:"
  47. @echo ""
  48. @echo " make qa : Run all the tests"
  49. @echo " make test : Run the unit tests"
  50. @echo ""
  51. @echo " make format : Format the source code"
  52. @echo " make fmtcheck : Check if the source code has been formatted"
  53. @echo " make vet : Check for suspicious constructs"
  54. @echo " make lint : Check for style errors"
  55. @echo " make coverage : Generate the coverage report"
  56. @echo " make cyclo : Generate the cyclomatic complexity report"
  57. @echo " make ineffassign : Detect ineffectual assignments"
  58. @echo " make misspell : Detect commonly misspelled words in source files"
  59. @echo " make structcheck : Find unused struct fields"
  60. @echo " make varcheck : Find unused global variables and constants"
  61. @echo " make errcheck : Check that error return values are used"
  62. @echo " make gosimple : Suggest code simplifications"
  63. @echo " make astscan : GO AST scanner"
  64. @echo ""
  65. @echo " make docs : Generate source code documentation"
  66. @echo ""
  67. @echo " make deps : Get the dependencies"
  68. @echo " make clean : Remove any build artifact"
  69. @echo " make nuke : Deletes any intermediate file"
  70. @echo ""
  71. # Alias for help target
  72. all: help
  73. # Run the unit tests
  74. test:
  75. @mkdir -p target/test
  76. @mkdir -p target/report
  77. GOPATH=$(GOPATH) \
  78. go test \
  79. -covermode=atomic \
  80. -bench=. \
  81. -race \
  82. -cpuprofile=target/report/cpu.out \
  83. -memprofile=target/report/mem.out \
  84. -mutexprofile=target/report/mutex.out \
  85. -coverprofile=target/report/coverage.out \
  86. -v ./... | \
  87. tee >(PATH=$(GOPATH)/bin:$(PATH) go-junit-report > target/test/report.xml); \
  88. test $${PIPESTATUS[0]} -eq 0
  89. # Format the source code
  90. format:
  91. @find . -type f -name "*.go" -exec gofmt -s -w {} \;
  92. # Check if the source code has been formatted
  93. fmtcheck:
  94. @mkdir -p target
  95. @find . -type f -name "*.go" -exec gofmt -s -d {} \; | tee target/format.diff
  96. @test ! -s target/format.diff || { echo "ERROR: the source code has not been formatted - please use 'make format' or 'gofmt'"; exit 1; }
  97. # Check for syntax errors
  98. vet:
  99. GOPATH=$(GOPATH) go vet .
  100. # Check for style errors
  101. lint:
  102. GOPATH=$(GOPATH) PATH=$(GOPATH)/bin:$(PATH) golint .
  103. # Generate the coverage report
  104. coverage:
  105. @mkdir -p target/report
  106. GOPATH=$(GOPATH) \
  107. go tool cover -html=target/report/coverage.out -o target/report/coverage.html
  108. # Report cyclomatic complexity
  109. cyclo:
  110. @mkdir -p target/report
  111. GOPATH=$(GOPATH) gocyclo -avg ./ | tee target/report/cyclo.txt ; test $${PIPESTATUS[0]} -eq 0
  112. # Detect ineffectual assignments
  113. ineffassign:
  114. @mkdir -p target/report
  115. GOPATH=$(GOPATH) ineffassign ./ | tee target/report/ineffassign.txt ; test $${PIPESTATUS[0]} -eq 0
  116. # Detect commonly misspelled words in source files
  117. misspell:
  118. @mkdir -p target/report
  119. GOPATH=$(GOPATH) misspell -error ./ | tee target/report/misspell.txt ; test $${PIPESTATUS[0]} -eq 0
  120. # Find unused struct fields
  121. structcheck:
  122. @mkdir -p target/report
  123. GOPATH=$(GOPATH) structcheck -a ./ | tee target/report/structcheck.txt
  124. # Find unused global variables and constants
  125. varcheck:
  126. @mkdir -p target/report
  127. GOPATH=$(GOPATH) varcheck -e ./ | tee target/report/varcheck.txt
  128. # Check that error return values are used
  129. errcheck:
  130. @mkdir -p target/report
  131. GOPATH=$(GOPATH) errcheck ./ | tee target/report/errcheck.txt
  132. # Suggest code simplifications
  133. gosimple:
  134. @mkdir -p target/report
  135. GOPATH=$(GOPATH) gosimple ./ | tee target/report/gosimple.txt
  136. # AST scanner
  137. astscan:
  138. @mkdir -p target/report
  139. GOPATH=$(GOPATH) gas .//*.go | tee target/report/astscan.txt
  140. # Generate source docs
  141. docs:
  142. @mkdir -p target/docs
  143. nohup sh -c 'GOPATH=$(GOPATH) godoc -http=127.0.0.1:6060' > target/godoc_server.log 2>&1 &
  144. wget --directory-prefix=target/docs/ --execute robots=off --retry-connrefused --recursive --no-parent --adjust-extension --page-requisites --convert-links http://127.0.0.1:6060/pkg/github.com/${VENDOR}/${PROJECT}/ ; kill -9 `lsof -ti :6060`
  145. @echo '<html><head><meta http-equiv="refresh" content="0;./127.0.0.1:6060/pkg/'${CVSPATH}'/'${PROJECT}'/index.html"/></head><a href="./127.0.0.1:6060/pkg/'${CVSPATH}'/'${PROJECT}'/index.html">'${PKGNAME}' Documentation ...</a></html>' > target/docs/index.html
  146. # Alias to run all quality-assurance checks
  147. qa: fmtcheck test vet lint coverage cyclo ineffassign misspell structcheck varcheck errcheck gosimple astscan
  148. # --- INSTALL ---
  149. # Get the dependencies
  150. deps:
  151. GOPATH=$(GOPATH) go get ./...
  152. GOPATH=$(GOPATH) go get github.com/golang/lint/golint
  153. GOPATH=$(GOPATH) go get github.com/jstemmer/go-junit-report
  154. GOPATH=$(GOPATH) go get github.com/axw/gocov/gocov
  155. GOPATH=$(GOPATH) go get github.com/fzipp/gocyclo
  156. GOPATH=$(GOPATH) go get github.com/gordonklaus/ineffassign
  157. GOPATH=$(GOPATH) go get github.com/client9/misspell/cmd/misspell
  158. GOPATH=$(GOPATH) go get github.com/opennota/check/cmd/structcheck
  159. GOPATH=$(GOPATH) go get github.com/opennota/check/cmd/varcheck
  160. GOPATH=$(GOPATH) go get github.com/kisielk/errcheck
  161. GOPATH=$(GOPATH) go get honnef.co/go/tools/cmd/gosimple
  162. GOPATH=$(GOPATH) go get github.com/GoASTScanner/gas
  163. # Remove any build artifact
  164. clean:
  165. GOPATH=$(GOPATH) go clean ./...
  166. # Deletes any intermediate file
  167. nuke:
  168. rm -rf ./target
  169. GOPATH=$(GOPATH) go clean -i ./...