forked from tkestack/kvass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
34 lines (26 loc) · 883 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
32
33
34
PROJECT_NAME := "tkestack.io/kvass"
PKG := "./"
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 lint vet test test-coverage build clean
all: test-coverage lint vet build
dep: ## Get the dependencies
@go mod download
lint: ## Lint Golang files
@golint -set_exit_status ${PKG_LIST}
vet: ## Run go vet
@go vet ${PKG_LIST}
test: ## Run unittests
@go test -short ${PKG_LIST}
test-coverage: ## Run tests with coverage
@go test -short -coverprofile cover.out -covermode=atomic ${PKG_LIST}
@cat cover.out >> coverage.txt
build: dep ## Build the binary file
@GOOS=${GOOS} GOARCH=${GOARCH} go build -o kvass cmd/kvass/*.go
clean: ## Remove previous build
@rm -fr kvass
@rm -fr cover.out coverage.txt
clog:
@git-chglog -o CHANGELOG.md