forked from matrixorigin/matrixcube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
34 lines (27 loc) · 1.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
PKGNAME = $(shell go list)
ROOT_DIR = $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))/
LD_FLAGS = -ldflags "-w -s"
GOOS = linux
DIST_DIR = $(ROOT_DIR)dist/
.PHONY: dist_dir
dist_dir: ; $(info ======== prepare distribute dir:)
mkdir -p $(DIST_DIR)
.PHONY: redis
redis: dist_dir; $(info ======== compiled matrixcube example redis:)
env GO111MODULE=off GOOS=$(GOOS) go build -o $(DIST_DIR)redis $(LD_FLAGS) $(ROOT_DIR)example/redis/*.go
.PHONY: http
http: dist_dir; $(info ======== compiled matrixcube example http:)
env CGO_ENABLED=0 GOOS=$(GOOS) go build -mod vendor -a -installsuffix cgo -o $(DIST_DIR)http $(LD_FLAGS) $(ROOT_DIR)example/http/*.go
.PHONY: example-redis
example-redis: ; $(info ======== compiled matrixcube redis example:)
docker build -t deepfabric/matrixcube-redis -f Dockerfile-redis .
.PHONY: example-http
example-http: http; $(info ======== compiled matrixcube http example:)
docker build -t deepfabric/matrixcube-http -f Dockerfile-http .
.PHONY: test
test: ; $(info ======== test matrixcube)
# go test $(RACE) -v -count=1 -timeout 600s $(PKGNAME)/storage
go test $(RACE) -v -count=1 -timeout 600s $(PKGNAME)/raftstore
.PHONY: race-test
race-test: override RACE=-race
race-test: test