-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
54 lines (49 loc) · 1.75 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
#
# k2hdkc_go
#
# Copyright 2018 Yahoo Japan Corporation.
#
# Go driver for k2hdkc that is a highly available and scalable distributed
# KVS clustering system. For k2hdkc, see
# https://github.com/yahoojapan/k2hdkc for the details.
#
# For the full copyright and license information, please view
# the license file that was distributed with this source code.
#
# AUTHOR: Hirotaka Wakabayashi
# CREATE: Fri, 14 Sep 2018
# REVISION:
#
#
build:
# use _build as the GOPATH-base
@/bin/echo "Running k2hdkc_go build"
GOPATH=$(PWD)/_build go install -v github.com/yahoojapan/k2hdkc_go/...
@echo "OK - built the following binaries:"
ls -l _build/bin
init:
# 0. remove the build directory
rm -fr _build
# 1. get source.
@echo "Running k2hdkc_go init (fetching source code)"
git clone https://github.com/yahoojapan/k2hdkc_go.git _build/src/github.com/yahoojapan/k2hdkc_go
# 2. syntax check.
BAD_GOFMT_FILES=$(find ./_build -name '*.go' | xargs gofmt -l)
@echo ".go files that are not gofmt-compliant (empty if all are fine): [$(BAD_GOFMT_FILES)]"
# 3. start cluster
cd cluster && sh ./start_server.sh
test:
@echo "Running k2hdkc_go test"
GOPATH=$(PWD)/_build go test -v github.com/yahoojapan/k2hdkc_go/tests
GOPATH=$(PWD)/_build go test -v github.com/yahoojapan/k2hdkc_go/tests -coverprofile=c.out
GOPATH=$(PWD)/_build go tool cover -html=c.out
publish:
@echo "Running k2hdkc_go publish"
# TODO: add scp of binaries to Artifactory (or RPM package creation and uploading)
# Local Variables:
# c-basic-offset: 4
# tab-width: 4
# indent-tabs-mode: t
# End:
# vim600: noexpandtab sw=4 ts=4 fdm=marker
# vim<600: noexpandtab sw=4 ts=4