-
Notifications
You must be signed in to change notification settings - Fork 44
/
Makefile
74 lines (63 loc) · 2.38 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
.PHONY: grpc deps binary build test mock cloc unit-test
REPO_PATH := github.com/projecteru2/core
REVISION := $(shell git rev-parse HEAD || unknown)
BUILTAT := $(shell date +%Y-%m-%dT%H:%M:%S)
VERSION := $(shell git describe --tags $(shell git rev-list --tags --max-count=1))
GO_LDFLAGS ?= -X $(REPO_PATH)/version.REVISION=$(REVISION) \
-X $(REPO_PATH)/version.BUILTAT=$(BUILTAT) \
-X $(REPO_PATH)/version.VERSION=$(VERSION)
ifneq ($(KEEP_SYMBOL), 1)
GO_LDFLAGS += -s
endif
grpc:
protoc --go_out=. --go-grpc_out=. \
--go_opt=paths=source_relative \
--go-grpc_opt=require_unimplemented_servers=false,paths=source_relative \
./rpc/gen/core.proto
deps:
go mod vendor
binary:
CGO_ENABLED=1 go build -mod=readonly -ldflags "$(GO_LDFLAGS)" -o eru-core
build: deps binary
test: deps unit-test
mock: deps
mockery --dir vendor/google.golang.org/grpc --output 3rdmocks --name ServerStream
mockery --dir vendor/github.com/docker/docker/client --output engine/docker/mocks --name APIClient
mockery --dir source --output source/mocks --name Source
mockery --dir store --output store/mocks --name Store
mockery --dir engine --output engine/mocks --name API
mockery --dir cluster --output cluster/mocks --name Cluster
mockery --dir wal --output wal/mocks --name WAL
mockery --dir lock --output lock/mocks --name DistributedLock
mockery --dir store/etcdv3/meta --output store/etcdv3/meta/mocks --all
mockery --dir vendor/go.etcd.io/etcd/client/v3 --output store/etcdv3/meta/mocks --name Txn
mockery --dir rpc/gen/ --output rpc/mocks --name CoreRPC_RunAndWaitServer
mockery --dir resource --output resource/mocks --name Manager
mockery --dir resource/plugins --output resource/plugins/mocks --name Plugin
.ONESHELL:
cloc:
cloc --exclude-dir=vendor,3rdmocks,mocks,tools,gen --not-match-f=test .
unit-test:
go vet `go list ./... | grep -v '/vendor/' | grep -v '/tools'` && \
go test -race -timeout 600s -count=1 -vet=off -cover ./utils/... \
./types/... \
./store/etcdv3/. \
./store/etcdv3/embedded/. \
./store/etcdv3/meta/. \
./source/common/... \
./strategy/... \
./rpc/. \
./engine/. \
./lock/etcdlock/... \
./auth/simple/... \
./discovery/helium... \
./resource/types/. \
./resource/plugins/cpumem/. \
./resource/plugins/cpumem/schedule/. \
./wal/. \
./wal/kv/. \
./store/redis/... \
./lock/redis/... && \
go test -timeout 600s -count=1 -cover ./cluster/calcium/...
lint:
golangci-lint run