-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
226 lines (162 loc) · 7.68 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#!/usr/bin/make -f
###############################################################################
### Generate ###
###############################################################################
gen:
@find . -name 'go.mod' -type f -execdir go generate ./... \;
.PHONY: gen
###############################################################################
### Build ###
###############################################################################
build:
@docker-compose down -v --remove-orphans
@docker-compose build
.PHONY: build
###############################################################################
### Postgres ###
###############################################################################
db:
@docker-compose up db
.PHONY: db
###############################################################################
### Fuseki ###
###############################################################################
fuseki:
@docker-compose up fuseki
.PHONY: fuseki
###############################################################################
### IPFS ###
###############################################################################
ipfs:
@docker-compose up ipfs
.PHONY: ipfs
###############################################################################
### Chora ###
###############################################################################
chora:
@docker-compose up chora
.PHONY: chora
###############################################################################
### Api ###
###############################################################################
api:
@go run ./cmd/api
.PHONY: api
###############################################################################
### Indexer ###
###############################################################################
idx:
@go run ./cmd/idx localhost:9090 chora-local 1
.PHONY: idx
###############################################################################
### Local ###
###############################################################################
local:
@docker-compose down -v --remove-orphans
@docker-compose up db ipfs chora api idx
.PHONY: local
###############################################################################
### E2E Tests ###
###############################################################################
e2e:
@docker-compose down -v --remove-orphans
@docker-compose up --abort-on-container-exit --exit-code-from tester db chora idx tester
.PHONY: e2e
###############################################################################
### Documentation ###
###############################################################################
docs:
@echo "Wait a few seconds and then visit http://localhost:6060/pkg/github.com/chora-io/server/"
godoc -http=:6060
.PHONY: docs
###############################################################################
### Go Modules ###
###############################################################################
verify:
@echo "Verifying all go module dependencies..."
@find . -name 'go.mod' -type f -execdir go mod verify \;
tidy:
@echo "Cleaning up all go module dependencies..."
@find . -name 'go.mod' -type f -execdir go mod tidy \;
.PHONY: verify tidy
###############################################################################
### Lint / Format ###
###############################################################################
lint:
@echo "Linting all go modules..."
@find . -name 'go.mod' -type f -execdir golangci-lint run --out-format=tab \;
lint-fix: format
@echo "Attempting to fix lint errors in all go modules..."
@find . -name 'go.mod' -type f -execdir golangci-lint run --fix --out-format=tab --issues-exit-code=0 \;
format_filter = -name '*.go' -type f
format_local = github.com/chora-io/server
format:
@echo "Formatting all go modules..."
@find . $(format_filter) | xargs gofmt -s -w
@find . $(format_filter) | xargs goimports -w -local $(subst $(whitespace),$(comma),$(format_local))
@find . $(format_filter) | xargs misspell -w
.PHONY: lint lint-fix format
###############################################################################
### Tests ###
###############################################################################
CURRENT_DIR=$(shell pwd)
GO_MODULES=$(shell find . -type f -name 'go.mod' -print0 | xargs -0 -n1 dirname | sort)
test: test-all
test-all:
@for module in $(GO_MODULES); do \
echo "Testing Module $$module"; \
cd ${CURRENT_DIR}/$$module; \
go test ./...; \
done
test-api:
@echo "Testing Module ./api"
@cd api && go test ./... -coverprofile=../coverage-api.out -covermode=atomic
test-db:
@echo "Testing Module ./db"
@cd db && go test ./... -coverprofile=../coverage-db.out -covermode=atomic
test-idx:
@echo "Testing Module ./idx"
@cd idx && go test ./... -coverprofile=../coverage-idx.out -covermode=atomic
test-coverage:
@cat coverage*.out | grep -v "mode: atomic" >> coverage.txt
test-clean:
@go clean -testcache
@find . -name 'coverage.txt' -delete
@find . -name 'coverage*.out' -delete
.PHONY: test test-all test-api test-db test-idx test-coverage test-clean
###############################################################################
### Go Version ###
###############################################################################
GO_MAJOR_VERSION = $(shell go version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f1)
GO_MINOR_VERSION = $(shell go version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f2)
MIN_GO_MAJOR_VERSION = 1
MIN_GO_MINOR_VERSION = 22
GO_VERSION_ERROR = Golang version $(GO_MAJOR_VERSION).$(GO_MINOR_VERSION) is not supported, \
please update to at least $(MIN_GO_MAJOR_VERSION).$(MIN_GO_MINOR_VERSION)
go-version:
@echo "Verifying go version..."
@if [ $(GO_MAJOR_VERSION) -gt $(MIN_GO_MAJOR_VERSION) ]; then \
exit 0; \
elif [ $(GO_MAJOR_VERSION) -lt $(MIN_GO_MAJOR_VERSION) ]; then \
echo $(GO_VERSION_ERROR); \
exit 1; \
elif [ $(GO_MINOR_VERSION) -lt $(MIN_GO_MINOR_VERSION) ]; then \
echo $(GO_VERSION_ERROR); \
exit 1; \
fi
.PHONY: go-version
###############################################################################
### Tools ###
###############################################################################
tools: go-version
@go install github.com/sqlc-dev/sqlc/cmd/sqlc@latest
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
@go install github.com/client9/misspell/cmd/misspell@latest
@go install golang.org/x/tools/cmd/goimports@latest
.PHONY: tools
###############################################################################
### Clean ###
###############################################################################
clean: test-clean
@docker-compose down -v --remove-orphans
.PHONY: clean