forked from uber/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
141 lines (108 loc) · 4.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
.PHONY: test bins clean cover cover_ci
PROJECT_ROOT = github.com/uber/cadence
export PATH := $(GOPATH)/bin:$(PATH)
THRIFT_GENDIR=.gen
# default target
default: test
# define the list of thrift files the service depends on
# (if you have some)
THRIFTRW_SRCS = \
idl/github.com/uber/cadence/cadence.thrift \
idl/github.com/uber/cadence/health.thrift \
idl/github.com/uber/cadence/history.thrift \
idl/github.com/uber/cadence/matching.thrift \
idl/github.com/uber/cadence/shared.thrift \
PROGS = cadence
TEST_ARG ?= -race -v -timeout 5m
BUILD := ./build
TOOLS_CMD_ROOT=./cmd/tools
INTEG_TEST_ROOT=./host
INTEG_TEST_DIR=host
export PATH := $(GOPATH)/bin:$(PATH)
define thriftrwrule
THRIFTRW_GEN_SRC += $(THRIFT_GENDIR)/go/$1/$1.go
$(THRIFT_GENDIR)/go/$1/$1.go:: $2
@mkdir -p $(THRIFT_GENDIR)/go
$(ECHO_V)thriftrw --plugin=yarpc --pkg-prefix=$(PROJECT_ROOT)/$(THRIFT_GENDIR)/go/ --out=$(THRIFT_GENDIR)/go $2
endef
$(foreach tsrc,$(THRIFTRW_SRCS),$(eval $(call \
thriftrwrule,$(basename $(notdir \
$(shell echo $(tsrc) | tr A-Z a-z))),$(tsrc))))
# Automatically gather all srcs
ALL_SRC := $(shell find . -name "*.go" | grep -v -e Godeps -e vendor \
-e ".*/\..*" \
-e ".*/_.*" \
-e ".*/mocks.*")
# filter out the src files for tools
TOOLS_SRC := $(shell find ./tools -name "*.go")
TOOLS_SRC += $(TOOLS_CMD_ROOT)
# all directories with *_test.go files in them
TEST_DIRS := $(sort $(dir $(filter %_test.go,$(ALL_SRC))))
# all tests other than integration test fall into the pkg_test category
PKG_TEST_DIRS := $(filter-out $(INTEG_TEST_ROOT)%,$(TEST_DIRS))
# Need the following option to have integration tests
# count towards coverage. godoc below:
# -coverpkg pkg1,pkg2,pkg3
# Apply coverage analysis in each test to the given list of packages.
# The default is for each test to analyze only the package being tested.
# Packages are specified as import paths.
GOCOVERPKG_ARG := -coverpkg="$(PROJECT_ROOT)/common/...,$(PROJECT_ROOT)/service/...,$(PROJECT_ROOT)/client/...,$(PROJECT_ROOT)/tools/..."
vendor/glide.updated: glide.lock glide.yaml
glide install
touch vendor/glide.updated
yarpc-install:
@type thriftrw >/dev/null 2>&1 || go get 'go.uber.org/thriftrw'
@type thriftrw-plugin-yarpc >/dev/null 2>&1 || go get 'go.uber.org/yarpc/encoding/thrift/thriftrw-plugin-yarpc'
clean_thrift:
rm -rf .gen
thriftc: clean_thrift yarpc-install $(THRIFTRW_GEN_SRC)
copyright: cmd/tools/copyright/licensegen.go
go run ./cmd/tools/copyright/licensegen.go --verifyOnly
cadence-cassandra-tool: vendor/glide.updated $(TOOLS_SRC)
go build -i -o cadence-cassandra-tool cmd/tools/cassandra/main.go
cadence: vendor/glide.updated $(ALL_SRC)
go build -i -o cadence cmd/server/cadence.go cmd/server/server.go
bins_nothrift: lint copyright cadence-cassandra-tool cadence
bins: thriftc bins_nothrift
test: bins
@rm -f test
@rm -f test.log
@for dir in $(TEST_DIRS); do \
go test -coverprofile=$@ "$$dir" | tee -a test.log; \
done;
cover_profile: clean bins_nothrift
@mkdir -p $(BUILD)
@echo "mode: atomic" > $(BUILD)/cover.out
@echo Running integration test
@mkdir -p $(BUILD)/$(INTEG_TEST_DIR)
@time go test $(INTEG_TEST_ROOT) $(TEST_ARG) $(GOCOVERPKG_ARG) -coverprofile=$(BUILD)/$(INTEG_TEST_DIR)/coverage.out || exit 1;
@cat $(BUILD)/$(INTEG_TEST_DIR)/coverage.out | grep -v "mode: atomic" >> $(BUILD)/cover.out
@echo Running package tests:
@for dir in $(PKG_TEST_DIRS); do \
mkdir -p $(BUILD)/"$$dir"; \
go test "$$dir" $(TEST_ARG) -coverprofile=$(BUILD)/"$$dir"/coverage.out || exit 1; \
cat $(BUILD)/"$$dir"/coverage.out | grep -v "mode: atomic" >> $(BUILD)/cover.out; \
done;
cover: cover_profile
go tool cover -html=$(BUILD)/cover.out;
cover_ci: cover_profile
goveralls -coverprofile=$(BUILD)/cover.out -service=travis-ci || echo -e "\x1b[31mCoveralls failed\x1b[m"; \
lint: vendor/glide.updated
@echo Running linter
@lintFail=0; for file in $(ALL_SRC); do \
golint "$$file"; \
if [ $$? -eq 1 ]; then lintFail=1; fi; \
done; \
if [ $$lintFail -eq 1 ]; then exit 1; fi;
@OUTPUT=`gofmt -l $(ALL_SRC) 2>&1`; \
if [ "$$OUTPUT" ]; then \
echo "Run 'make fmt'. gofmt must be run on the following files:"; \
echo "$$OUTPUT"; \
exit 1; \
fi
fmt:
@gofmt -w $(ALL_SRC)
clean:
rm -f cadence
rm -f cadence-cassandra-tool
rm -Rf $(BUILD)