-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
50 lines (37 loc) · 1.36 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Based on https://about.gitlab.com/blog/2017/11/27/go-tools-and-gitlab-how-to-do-continuous-integration-like-a-boss/
PROJECT_NAME := "atwhy"
PKG := "github.com/Tiffinger-Thiel-GmbH/$(PROJECT_NAME)"
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/)
GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
GOOS ?= linux
GOARCH ?= amd64
.PHONY: all dep build clean test race coverage coverhtml lint dist
all: build
lint: ## Lint the files
@go vet
@go install honnef.co/go/tools/cmd/staticcheck@latest
@staticcheck
test: ## Run unittests
@go test -short ${PKG_LIST}
race: dep ## Run data race detector
@go test -race -short ${PKG_LIST}
coverage: ## Generate global code coverage report
@go test ./... -coverprofile=coverage.txt -covermode=atomic
coverhtml: ## Generate global code coverage report in HTML
echo TODO...
dep: ## Get the dependencies
@go get -v -d ./...
build: dep ## Build the binary file
@go build -v $(PKG)
dist: build
ifeq ($(GOOS),windows)
@zip ${GOOS}-${GOARCH}-atwhy.zip ${PROJECT_NAME}.exe
else
@chmod +x ${PROJECT_NAME}
@tar -czf ${GOOS}-${GOARCH}-atwhy.tar.gz ${PROJECT_NAME}
endif
clean: ## Remove previous build
@go clean
@rm coverage.txt
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}'