gonextcloud/Makefile

35 lines
1.1 KiB
Makefile
Raw Permalink Normal View History

2018-07-31 13:09:39 +00:00
PROJECT_NAME := "gonextcloud"
2018-10-26 13:35:50 +00:00
PKG := "gitlab.bertha.cloud/partitio/Nextcloud-Partitio/$(PROJECT_NAME)"
2018-07-31 13:09:39 +00:00
PKG_LIST := $(shell go list ${PKG})
GO_FILES := $(shell find . -name '*.go' | grep -v _test.go)
.PHONY: all dep build clean test coverage coverhtml lint
2018-10-17 09:15:27 +00:00
all: dep lint test race coverage
2018-07-31 13:09:39 +00:00
lint: ## Lint the files
@golint -set_exit_status ${PKG_LIST}
test: ## Run unittests
2019-07-13 22:55:12 +00:00
@GO111MODULE=on go test -mod=vendor -v .
2018-07-31 13:09:39 +00:00
race: dep ## Run data race detector
2019-07-13 22:55:12 +00:00
@GO111MODULE=on go test -mod=vendor -v -race ${PKG_LIST}
2018-07-31 13:09:39 +00:00
msan: dep ## Run memory sanitizer
2019-07-13 22:55:12 +00:00
@GO111MODULE=on go test -mod=vendor -msan -short ${PKG_LIST}
2018-07-31 13:09:39 +00:00
coverage: ## Generate global code coverage report
2018-10-08 16:50:11 +00:00
@mkdir -p cover
2018-10-17 07:20:28 +00:00
@touch cover/${PROJECT_NAME}cov
2019-07-13 22:55:12 +00:00
@go tool cover -html=cover/${PROJECT_NAME}cov -o coverage.html
2018-07-31 13:09:39 +00:00
dep: ## Get the dependencies
2019-07-13 22:55:12 +00:00
@GO111MODULE=on go mod vendor
2018-07-31 13:09:39 +00:00
2018-10-17 09:15:27 +00:00
push: dep lint test coverage ## Push to git repository
@git push origin master
2018-07-31 13:09:39 +00:00
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}'