-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile
64 lines (46 loc) · 1.5 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
MODULE = github.com/binance-chain/tss-lib
PACKAGES = $(shell go list ./... | grep -v '/vendor/')
all: protob test
########################################
### Protocol Buffers
protob:
@echo "--> Building Protocol Buffers"
@for protocol in message signature ecdsa-keygen ecdsa-signing ecdsa-resharing eddsa-keygen eddsa-signing eddsa-resharing; do \
echo "Generating $$protocol.pb.go" ; \
protoc --go_out=. ./protob/$$protocol.proto ; \
done
########################################
### Format
fmt:
@go fmt ./...
lint:
@golangci-lint run
build: protob
go fmt ./...
########################################
### Benchmarking
benchgen: fmt
cd cmd && go run ./tss-benchgen benchdata
benchsign: fmt
cd cmd && go run ./tss-benchsign benchdata
########################################
### Testing
test_unit:
@echo "--> Running Unit Tests"
@echo "!!! WARNING: This will take a long time :)"
go test -timeout 60m $(PACKAGES)
test_unit_race:
@echo "--> Running Unit Tests (with Race Detection)"
@echo "!!! WARNING: This will take a long time :)"
# go clean -testcache
go test -timeout 60m -race $(PACKAGES)
test:
make test_unit_race
########################################
### Pre Commit
pre_commit: build test
########################################
# To avoid unintended conflicts with file names, always add to .PHONY
# # unless there is a reason not to.
# # https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html
.PHONY: protob build test_unit test_unit_race test benchgen benchsign