-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
31 lines (22 loc) · 914 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
PROJECT_NAME := bclib
PKG := "github.com/chainswatch/$(PROJECT_NAME)"
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/)
GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
.PHONY: dep build clean test coverage coverhtml lint
lint: ## Lint the files
@gofmt -s -w .
@revive -config lint.toml ${PKG_LIST}
test: ## Run unittests
@go test -short ${PKG_LIST}
race: dep ## Run data race detector
@go test -race -short ${PKG_LIST}
msan: ## Run memory sanitizer
@go test -msan -short ${PKG_LIST}
coverage: ## Generate global code coverage report
@/bin/sh coverage.sh
coverhtml: ## Generate global code coverage report in HTML
@/bin/sh coverage.sh html
dep: ## Get the dependencies
@go get -v -d ./...
help: ## Display this help screen
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'