-
Notifications
You must be signed in to change notification settings - Fork 701
/
Makefile
97 lines (78 loc) · 2.21 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
PROJECT_NAME := "jupiter"
PKG := "github.com/douyu/jupiter"
PKG_LIST := $(shell go list ${PKG}/... | grep /pkg/)
GO_FILES := $(shell find . -name '*.go' | grep /pkg/ | grep -v _test.go)
.DEFAULT_GOAL := default
.PHONY: all test lint fmt fmtcheck cmt errcheck license
GOCMT := $(shell command -v gocmt 2 > /dev/null)
REVIVE := $(shell command -v revive 2 > /dev/null)
ERRCHECK := $(shell command -v errcheck 2 > /dev/null)
all: fmt errcheck lint build
default: help
.PHONY: init
# init tools
init:
@echo "Installing tools from tools/tools.go"
@cd tools && cat tools.go |grep _|awk -F '"' '{print $$2}' | xargs -tI % go install %
# Lint the go files
golint:
golangci-lint run -v
# Lint markdown files
lintmd:
markdownlint -c .github/markdown_lint_config.json website/docs README.md pkg
# Run e2e test
e2e-test:
cd test/e2e \
&& go mod tidy \
&& ginkgo -r -race -cover -covermode=atomic -coverprofile=coverage.txt --randomize-suites --trace -coverpkg=github.com/douyu/jupiter/... .\
&& cd -
# Get the coverage of e2e test
covsh-e2e:
gocovsh --profile test/e2e/coverage.txt
# Run unit test
unit-test:
go test -race -coverprofile=coverage.txt -covermode=atomic ./...
# Get the coverage of unit test
covsh-unit:
gocovsh --profile coverage.txt
# update buf mod
update:
cd api && buf mod update
.PHONY: generate
# generate code
generate:
buf generate
cd proto && buf generate --template buf.gen.tag.yaml
.PHONY: lint
# lint
lint:
buf lint
# breaking
breaking:
buf breaking --against https://github.com/douyu/jupiter/.git#branch=main,ref=HEAD~1,subdir=proto
# test
test-proto2http:
go test -v -cover ./proto/...
# validate openapi docs
validate:
swagger validate proto/helloworld/v1/helloworld.swagger.json
# serve openapi docs
serve:
swagger serve proto/helloworld/v1/helloworld.swagger.json
# show help
help:
@echo ''
@echo 'Usage:'
@echo ' make [target]'
@echo ''
@echo 'Targets:'
@awk '/^[a-zA-Z\-\0-9]+:/ { \
helpMessage = match(lastLine, /^# (.*)/); \
if (helpMessage) { \
helpCommand = substr($$1, 0, index($$1, ":")-1); \
helpMessage = substr(lastLine, RSTART + 2, RLENGTH); \
printf "\033[36m%-22s\033[0m %s\n", helpCommand,helpMessage; \
} \
} \
{ lastLine = $$0 }' $(MAKEFILE_LIST)
.DEFAULT_GOAL := help