blob: e1fc38a88c720dcdbf4820e8804cd4d240752a73 (
plain) (
blame)
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
|
# 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-core
BUILDER_REPO = cobinhooddev/ci-base-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 "$(GOPATH)":/go:z \
-v $(BINDIR):/artifacts:z \
-e "GOPATH=/go" \
-w /go/src/$(PROJECT_ROOT) \
$(BUILDER_REPO):latest sh -c "\
go build -o /artifacts/$1 $(PROJECT_ROOT)/cmd/$1"
else
@mkdir -p $(BINDIR)
$(AT_LOCAL_GO)go install -ldflags '$(GO_LDFLAGS)' $(PROJECT_ROOT)/cmd/$1
@install -c $(GOPATH)/bin/$1 $(BINDIR)
endif
endef
COMPONENTS = \
dexcon-simulation \
dexcon-simulation-peer-server \
dexcon-simulation-with-scheduler
.PHONY: clean default
default: all
all: $(COMPONENTS)
$(foreach component, $(COMPONENTS), $(eval $(call BUILD_RULE,$(component))))
pre-build: dep
pre-submit: dep check-format lint test vet
dep:
@bin/install_eth_dep.sh
@bin/install_dkg_dep.sh
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'`
test-short:
@for pkg in `go list ./... | grep -v 'vendor'`; do \
if ! go test -race -short $$pkg; then \
echo 'Some test failed, abort'; \
exit 1; \
fi; \
done
test:
@for pkg in `go list ./... | grep -v 'vendor'`; do \
if ! go test -race $$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
|