-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
45 lines (44 loc) · 1.14 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
GOCMD=go
GOTESTSUM_VERSION=v1.7.0
GOLINT_VERSION=latest
GOBUILD=$(GOCMD) build
GOCLEAN=$(GOCMD) clean
GOTEST=$(GOCMD) run gotest.tools/gotestsum@$(GOTESTSUM_VERSION)
GOGET=$(GOCMD) get
GOLIST=$(GOCMD) list
GOTOOL=$(GOCMD) tool
GOLIST_PKG=$(GOLIST) ./... | grep -v /vendor/
GOLINT=$(GOCMD) run golang.org/x/lint/golint@$(GOLINT_VERSION)
GORELEASER=goreleaser
BINARY_NAME=sd-local
COVERPROFILE?=cover.out
JSONFILE?=report.json
all: test build
test: format vet lint clean_mod_file
$(GOTEST) --format testname --jsonfile $(JSONFILE) -- -coverprofile=$(COVERPROFILE) ./...
vet:
$(GOCMD) vet -v ./...
lint:
$(GOLIST_PKG) | xargs -n 1 $(GOLINT) -set_exit_status
format:
find . -name '*.go' | xargs gofmt -s -w
clean_mod_file:
$(GOCMD) mod tidy
mod_download:
$(GOCMD) mod download
build: mod_download
$(GOBUILD) -o $(BINARY_NAME) -v
publish_dry_run:
$(GORELEASER) --snapshot --skip-publish --rm-dist
publish:
$(GORELEASER) --rm-dist
run: build
./$(BINARY_NAME)
clean:
$(GOCLEAN)
rm -f $(BINARY_NAME)
rm -rf ./dist
cover_html:
$(GOTEST) -race -cover -coverprofile=cover.out -covermode=atomic ./...
$(GOTOOL) cover -html=cover.out -o cover.html
open cover.html