-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (26 loc) · 1.03 KB
/
Makefile
File metadata and controls
36 lines (26 loc) · 1.03 KB
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
rebuild-messages-event-proto:
@echo "Rebuilding es/event.proto..."
@protoc -I=. --go-grpc_out=. --go_out=. --go_opt=paths=source_relative \
--go-grpc_opt=paths=source_relative es/event.proto
rebuild-errors-proto:
@echo "Rebuilding es/event.proto..."
@protoc -I=. --go-grpc_out=. --go_out=. --go_opt=paths=source_relative \
--go-grpc_opt=paths=source_relative es/event.proto
rebuild-codec-internal-proto:
@echo "Rebuilding codec/internal/pb/codec.proto..."
@protoc -I=. --go_out=. --go_opt=paths=source_relative codec/internal/pb/codec.proto
add-module-replaces:
@echo "Adding module replaces..."
@go run internal/releasehelper/releasehelper.go addreplace
drop-module-replaces:
@echo "Adding module replaces..."
@go run internal/releasehelper/releasehelper.go dropreplace
update-deps:
@echo "Updating modules dependencies..."
@./internal/testing/update_deps.sh
run-checks:
@echo "Running repository checks..."
@./internal/testing/runchecks.sh
gomod-cleanup:
@echo "Cleaning golang modules..."
@./internal/testing/gomodcleanup.sh