-
Notifications
You must be signed in to change notification settings - Fork 27
/
Makefile
74 lines (55 loc) · 1.17 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
BUILDER = ./bin/coreum-builder
.PHONY: znet
znet:
$(BUILDER) znet
.PHONY: znet-start
znet-start:
$(BUILDER) znet start --profiles=3cored
.PHONY: znet-start-ibc
znet-start-ibc:
$(BUILDER) znet start --profiles=3cored,ibc
.PHONY: znet-start-stress
znet-start-stress:
$(BUILDER) znet start --profiles=3cored,dex
.PHONY: znet-remove
znet-remove:
$(BUILDER) znet remove
.PHONY: lint
lint:
$(BUILDER) lint
.PHONY: test
test:
$(BUILDER) test
.PHONY: test-fuzz
test-fuzz:
$(BUILDER) test-fuzz
.PHONY: build
build:
$(BUILDER) build
.PHONY: images
images:
$(BUILDER) images
.PHONY: wasm
wasm:
$(BUILDER) wasm
.PHONY: generate
generate:
$(BUILDER) generate
.PHONY: release
release:
$(BUILDER) release
.PHONY: release-images
release-images:
$(BUILDER) release/images
.PHONY: integration-tests-modules
integration-tests-modules:
$(BUILDER) integration-tests-unsafe/modules
.PHONY: integration-tests-stress
integration-tests-stress:
$(BUILDER) integration-tests-unsafe/stress
.PHONY: integration-tests-ibc
integration-tests-ibc:
$(BUILDER) integration-tests-unsafe/ibc
.PHONY: integration-tests-upgrade
integration-tests-upgrade:
$(BUILDER) integration-tests-unsafe/upgrade