forked from viamrobotics/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
57 lines (47 loc) · 1.84 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
SHELL := bash
PROTO_FILES := $(shell find proto/ -type f -name '*.proto')
export GOBIN := $(shell pwd)/bin/gotools/$(shell uname -s)-$(shell uname -m)
export PATH := $(GOBIN):$(shell npm root)/.bin:$(PATH)
.PHONY: all
all: clean dist/buf
.PHONY: setup
setup:
bash etc/setup.sh
.PHONY: clean
clean:
git clean -fxd
dist/tool-install: Makefile
npm ci --audit=false
go install google.golang.org/protobuf/cmd/protoc-gen-go \
github.com/bufbuild/buf/cmd/protoc-gen-buf-breaking \
github.com/bufbuild/buf/cmd/protoc-gen-buf-lint \
github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc \
google.golang.org/grpc/cmd/protoc-gen-go-grpc \
github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway \
github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2 \
github.com/srikrsna/protoc-gen-gotag \
github.com/edaniels/golinters/cmd/combined \
github.com/golangci/golangci-lint/cmd/golangci-lint \
github.com/bufbuild/buf/cmd/buf
mkdir -p dist
touch dist/tool-install
.PHONY: dist/buf
dist/buf: dist/buf-go dist/buf-web
dist/buf-go: dist/tool-install $(PROTO_FILES)
buf lint
buf format -w
buf generate --template ./proto/viam/buf.gen.yaml
buf generate --template ./proto/viam/buf.gen.tagger.yaml
touch dist/buf-go
dist/buf-web: dist/tool-install $(PROTO_FILES)
buf lint
buf format -w
buf generate --template ./proto/viam/buf.gen.web.yaml
buf generate --timeout 5m --template ./proto/viam/buf.gen.web.yaml buf.build/googleapis/googleapis
touch dist/buf-web
.PHONY: lint
lint: dist/tool-install
buf lint
buf format -w
export pkgs=`go list -f '{{.Dir}}' ./... | grep -v gen | grep -v proto` && echo "$$pkgs" | xargs go vet -vettool=`which combined`
export GOGC=50 pkgs=`go list -f '{{.Dir}}' ./... | grep -v gen | grep -v proto` && echo "$$pkgs" | xargs golangci-lint run $(LINT_BUILD_TAGS) -v --fix --config=./etc/.golangci.yaml