-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
103 lines (82 loc) · 2.87 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
VERSION = 0.2.0
GO ?= go
GOFMT ?= $(GO)fmt
DEFAULT_GOPATH=$(shell echo $$GOPATH|tr ':' '\n'|awk '!x[$$0]++'|sed '/^$$/d'|head -1)
ifeq ($(DEFAULT_GOPATH),)
DEFAULT_GOPATH := ~/go
endif
DEFAULT_GOBIN=$(DEFAULT_GOPATH)/bin
export PATH:=$(PATH):$(DEFAULT_GOBIN)
GOLANGCI_LINT=$(DEFAULT_GOBIN)/golangci-lint
GODOC=godoc -index -links=true -notes="BUG|TODO|XXX|ISSUE|FIXME"
#############################################################################
### Building ############################################################
#############################################################################
default: build
build:
@echo ">> Checking build ..."
@GO111MODULE=on $(GO) build -v ./...
#############################################################################
### Custom Installs #####################################################
#############################################################################
GOLANGCI_LINT = $(DEFAULT_GOBIN)/golangci-lint
TEST_RUNNER = $(DEFAULT_GOBIN)/gotestsum
GODA = $(DEFAULT_GOBIN)/goda
$(GOLANGCI_LINT):
@echo ">> Couldn't find $(GOLANGCI_LINT); installing ..."
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | \
sh -s -- -b $(DEFAULT_GOBIN) v1.50.1
$(TEST_RUNNER):
@echo ">> Couldn't find $(TEST_RUNNER); installing ..."
GOPATH=$(DEFAULT_GOPATH) \
GOBIN=$(DEFAULT_GOBIN) \
GO111MODULE=on \
$(GO) get gotest.tools/gotestsum && \
$(GO) install gotest.tools/gotestsum
$(GODA):
@echo ">> Couldn't find $(GODA); installing ..."
@GOPATH=$(DEFAULT_GOPATH) \
GOBIN=$(DEFAULT_GOBIN) \
GO111MODULE=on \
$(GO) get -u github.com/loov/goda
#############################################################################
### Linting & Testing ###################################################
#############################################################################
show-linter:
@echo $(GOLANGCI_LINT)
lint-silent: $(GOLANGCI_LINT)
@$(GOLANGCI_LINT) \
--enable=typecheck \
--enable=revive \
--enable=gocritic \
--enable=misspell \
--enable=nakedret \
--enable=unparam \
--enable=lll \
--enable=goconst \
--out-format=colored-line-number \
run ./...
lint:
@echo '>> Linting source code'
@GO111MODULE=on $(MAKE) lint-silent
test: $(TEST_RUNNER)
@echo '>> Running all tests'
@GO111MODULE=on $(TEST_RUNNER) --format testname -- ./...
test-nocolor:
@echo '>> Running all tests'
@GO111MODULE=on $(GO) test ./... -v
#############################################################################
### Release Process #####################################################
#############################################################################
tag:
@echo "Tags:"
@git tag|tail -5
@git tag "v$(VERSION)"
@echo "New tag list:"
@git tag|tail -6
tag-and-push: tag
@git push --tags
tag-delete: VERSION ?= 0.0.0
tag-delete:
@git tag --delete v$(VERSION)
@git push --delete origin v$(VERSION)