mirror of
				https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
				synced 2025-11-04 11:01:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PROJECT_NAME := "gonextcloud"
 | 
						|
PKG := "gitlab.bertha.cloud/partitio/Nextcloud-Partitio/$(PROJECT_NAME)"
 | 
						|
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
 | 
						|
 | 
						|
all: dep lint test race coverage
 | 
						|
 | 
						|
lint: ## Lint the files
 | 
						|
	@golint -set_exit_status ${PKG_LIST}
 | 
						|
 | 
						|
test: ## Run unittests
 | 
						|
	@GO111MODULE=on go test -mod=vendor -v .
 | 
						|
 | 
						|
race: dep ## Run data race detector
 | 
						|
	@GO111MODULE=on go test -mod=vendor -v -race ${PKG_LIST}
 | 
						|
 | 
						|
msan: dep ## Run memory sanitizer
 | 
						|
	@GO111MODULE=on go test -mod=vendor -msan -short ${PKG_LIST}
 | 
						|
 | 
						|
coverage: ## Generate global code coverage report
 | 
						|
	@mkdir -p cover
 | 
						|
	@touch cover/${PROJECT_NAME}cov
 | 
						|
	@go tool cover -html=cover/${PROJECT_NAME}cov -o coverage.html
 | 
						|
 | 
						|
dep: ## Get the dependencies
 | 
						|
	@GO111MODULE=on go mod vendor
 | 
						|
 | 
						|
push: dep lint test coverage ## Push to git repository
 | 
						|
	@git push origin master
 | 
						|
 | 
						|
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}'
 |