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
142
143
144
145
146
147
148
149
150
|
# Makefile for DEXON Consensus Core
GOPATH = $(CURDIR)/../../../../
ifndef BINDIR
BINDIR := $(CURDIR)/build
else
BINDIR := $(abspath $(BINDIR))
endif
PROJECT_ROOT=github.com/dexon-foundation/dexon-consensus
BLS_REPO = dexonfoundation/bls-go-alpine
BLS_LIB = vendor/github.com/dexon-foundation/bls/lib/libbls384.a
BUILDER_REPO = dexonfoundation/dexon-alpine
ifeq ($(DOCKER),true)
GO_LDFLAGS += -linkmode external -extldflags \"-static\"
endif
V ?= 0
AT_LOCAL_GO = $(AT_LOCAL_GO_$(V))
AT_LOCAL_GO_0 = @echo " HOST GO "$1;
AT_LOCAL_GO_1 =
AT_DOCKER_GO = $(AT_DOCKER_GO_$(V))
AT_DOCKER_GO_0 = @echo " DOCKER GO "$1;
AT_DOCKER_GO_1 =
define BUILD_RULE
$1: pre-build
ifeq ($(DOCKER),true)
$(AT_DOCKER_GO)docker run --rm \
-v BLSDATA:/data/bls \
-v "$(GOPATH)":/go:z \
-v $(BINDIR):/artifacts:z \
-e "GOPATH=/go" \
-w /go/src/$(PROJECT_ROOT) \
$(BUILDER_REPO):latest sh -c "\
mv -f $(BLS_LIB) $(BLS_LIB).bak; \
cp /data/bls/libbls384.a $(BLS_LIB) ;\
go build -o /artifacts/$1 $(PROJECT_ROOT)/cmd/$1; \
mv -f $(BLS_LIB).bak $(BLS_LIB)"
else
@mkdir -p $(BINDIR)
$(AT_LOCAL_GO)go install -ldflags '$(GO_LDFLAGS)' $(PROJECT_ROOT)/cmd/$1
@install -c $(GOPATH)/bin/$1 $(BINDIR)
endif
endef
GO_TEST_TIMEOUT := 20m
TEST_TARGET := go list ./... | grep -v 'vendor'
ifeq ($(NO_INTEGRATION_TEST), true)
GO_TEST_TIMEOUT := 15m
TEST_TARGET := $(TEST_TARGET) | grep -v 'integration_test'
else ifeq ($(ONLY_INTEGRATION_TEST), true)
TEST_TARGET := $(TEST_TARGET) | grep 'integration_test'
endif
GO_TEST_FLAG := -v -timeout $(GO_TEST_TIMEOUT)
ifneq ($(NO_TEST_RACE), true)
GO_TEST_FLAG := $(GO_TEST_FLAG) -race
endif
COMPONENTS = \
dexcon-simulation \
dexcon-simulation-peer-server \
dexcon-simulation-with-scheduler
.PHONY: clean default
default: all
all: $(COMPONENTS)
ifeq ($(DOCKER),true)
@docker volume rm BLSDATA > /dev/null
endif
$(foreach component, $(COMPONENTS), $(eval $(call BUILD_RULE,$(component))))
pre-build: dep docker-dep
pre-submit: dep check-format lint vet check-security test
dep:
@bin/install_eth_dep.sh
@bin/install_dkg_dep.sh
docker-dep:
ifeq ($(DOCKER),true)
@docker run --rm -v BLSDATA:/data/bls $(BLS_REPO):latest \
sh -c "cp -f /usr/lib/libbls384.a /data/bls/"
endif
format:
@go fmt `go list ./... | grep -v 'vendor'`
lint:
@$(GOPATH)/bin/golint -set_exit_status `go list ./... | grep -v 'vendor'`
vet:
@go vet `go list ./... | grep -v 'vendor'`
check-security:
@rm -f gosec.log
@gosec -quiet -out gosec.log ./... || true
@if [ -a gosec.log ]; then \
cat gosec.log; \
echo 'Error: security issue found'; \
exit 1; \
fi
test-short:
@for pkg in `$(TEST_TARGET)`; do \
if ! go test -short $(GO_TEST_FLAG) $$pkg; then \
echo 'Some test failed, abort'; \
exit 1; \
fi; \
done
test:
@for pkg in `$(TEST_TARGET)`; do \
if ! go test $(GO_TEST_FLAG) $$pkg; then \
echo 'Some test failed, abort'; \
exit 1; \
fi; \
done
bench:
@for pkg in `go list ./... | grep -v 'vendor'`; do \
if ! go test -bench=. -run=^$$ $$pkg; then \
echo 'Some test failed, abort'; \
exit 1; \
fi; \
done
check-format:
@if gofmt -l `go list -f '{{.Dir}}' ./...` | grep -q go; then \
echo 'Error: source code not formatted'; \
exit 1; \
fi
.ONESHELL:
test-sim: all
@rm -rf build/test-sim
@mkdir build/test-sim
@cp test_config/test.toml build/test-sim/
@cd build/test-sim ; ../dexcon-simulation-peer-server -config test.toml >& server.log &
@cd build/test-sim ; ../dexcon-simulation -config test.toml >& /dev/null
@if grep "error" build/test-sim/server.log -q -i; then \
exit 1; \
fi
|