-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
64 lines (49 loc) · 1.56 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
PROJECT_NAME := "appinsights"
IMAGE_NAME := "michaelgolfi/appinsights"
PKG := "gitlab.com/michael.golfi/appinsights"
TAG ?= "latest"
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/)
GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
.PHONY: all install build lint test race msan coverage coverhtml deploy clean help
all: build
#
# Build
#
install: ## Get the dependencies
@go get -u github.com/golang/dep/cmd/dep
@dep ensure --vendor-only
@go get -u github.com/golang/lint/golint
build: #dep ## Build the binary file
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo --ldflags="-s" -o appinsights
#
# Test
#
lint: ## Lint the files
@golint -set_exit_status ${PKG_LIST}
test: ## Run unittests
GOOS=linux go test -short ${PKG_LIST}
race: #dep ## Run data race detector
CGO_ENABLED=1 GOOS=linux go test -race -short ${PKG_LIST}
msan: #dep ## Run memory sanitizer
CGO_ENABLED=1 GOOS=linux go test -msan -short ${PKG_LIST}
coverage: ## Generate global code coverage report
@chmod +x scripts/coverage.sh
GOOS=linux ./scripts/coverage.sh;
coverhtml: ## Generate global code coverage report in HTML
@chmod +x scripts/coverage.sh
GOOS=linux ./scripts/coverage.sh html;
#
# Deploy
#
plugin:
./scripts/plugin.sh
deploy: plugin
./scripts/build.sh
@docker plugin push $(IMAGE_NAME):$(TAG)
#
# Help and Teardown
#
clean: ## Remove previous build
@rm -f $(PROJECT_NAME)
help: ## Display this help screen
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'