forked from Stride-Labs/stride
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
72 lines (51 loc) · 1.96 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
#!/usr/bin/make -f
BUILDDIR ?= $(CURDIR)/build
build=s
cache=false
.PHONY: build
all: lint check-dependencies build-local
###############################################################################
### Build & Clean ###
###############################################################################
build:
mkdir -p $(BUILDDIR)/
go build -mod=readonly -trimpath -o $(BUILDDIR) ./...;
clean:
rm -rf $(BUILDDIR)/*
clean-state:
rm -rf scripts-local/state
lint:
golangci-lint run
###############################################################################
### Tests ###
###############################################################################
test-unit:
@go test -mod=readonly ./x/$(module)/...
test-cover:
@go test -mod=readonly -race -coverprofile=coverage.out -covermode=atomic ./x/$(module)/...
test-integration:
sh scripts-local/tests/run_all_tests.sh
test-integration-docker:
sh scripts/tests/run_all_tests.sh
###############################################################################
### DockerNet ###
###############################################################################
init-docker:
sh scripts/init_main.sh -${build}
clean-docker:
rm -rf scripts/state
@docker-compose stop
@docker-compose down
docker image prune -a
###############################################################################
### LocalNet ###
###############################################################################
check-dependencies:
sh scripts-local/check_dependencies.sh
build-local:
@sh scripts-local/build.sh -${build} ${BUILDDIR}
init-local: build-local
@sh scripts-local/start_network.sh ${cache}
stop:
@killall gaiad strided hermes interchain-queries
@pkill -f "/bin/bash.*create_logs.sh"