-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
68 lines (44 loc) · 2.14 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
#!/usr/bin/make -f
DOCKER := $(shell which docker)
###############################################################################
### Protobuf ###
###############################################################################
protoVer=0.14.0
protoImageName=ghcr.io/cosmos/proto-builder:$(protoVer)
protoImage=$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace $(protoImageName)
proto-all: proto-format proto-lint proto-gen proto-pulsar-gen
proto-gen:
@echo "Generating Protobuf files"
@$(protoImage) sh ./scripts/protocgen.sh
proto-pulsar-gen:
@echo "Generating Dep-Inj Protobuf files"
@$(protoImage) sh ./scripts/protocgen-pulsar.sh
proto-format:
@$(protoImage) find ./proto -name "*.proto" -exec buf format {} -w \;
proto-lint:
@$(protoImage) buf lint --error-format=json ./proto
proto-check-breaking:
@$(protoImage) buf breaking --against $(HTTPS_GIT)#branch=main
.PHONY: proto-all proto-gen proto-pulsar-gen proto-format proto-lint proto-check-breaking
###############################################################################
### Linting ###
###############################################################################
lint:
golangci-lint run --out-format=tab --timeout=15m --tests=false
lint-fix:
golangci-lint run --fix --out-format=tab --timeout=15m --tests=false
.PHONY: lint lint-fix
###############################################################################
### Tests
###############################################################################
test: test-unit
test-all: test-unit test-race test-cover
test-unit:
@VERSION=$(VERSION) go test -mod=readonly -tags='ledger test_ledger_mock' ./...
test-race:
@VERSION=$(VERSION) go test -mod=readonly -race -tags='ledger test_ledger_mock' ./...
test-cover:
@go test -mod=readonly -timeout 30m -race -coverprofile=coverage.txt -covermode=atomic -tags='ledger test_ledger_mock' ./...
benchmark:
@go test -timeout 20m -mod=readonly -bench=. ./...
.PHONY: test test-all test-cover test-unit test-race benchmark