2021-01-23 09:20:17 -08:00
|
|
|
#!/usr/bin/env bash
|
2020-08-15 13:14:24 -07:00
|
|
|
|
|
|
|
(
|
|
|
|
cd tools/
|
2020-10-16 11:48:53 -07:00
|
|
|
./build.sh
|
2020-08-15 13:14:24 -07:00
|
|
|
)
|
|
|
|
|
2020-10-28 14:41:35 -07:00
|
|
|
(
|
|
|
|
cd third_party/
|
|
|
|
[[ ! -d googleapis ]] && git clone https://github.com/googleapis/googleapis
|
|
|
|
cd googleapis
|
|
|
|
git checkout 24fb9e5d1f37110bfa198189c34324aa3fdb0896
|
|
|
|
)
|
|
|
|
|
2020-08-20 09:42:46 -07:00
|
|
|
tools/bin/buf protoc \
|
2020-10-28 14:41:35 -07:00
|
|
|
-Iproto \
|
|
|
|
-Ithird_party/googleapis \
|
2020-08-20 09:42:46 -07:00
|
|
|
--plugin tools/bin/protoc-gen-go \
|
|
|
|
--go_out=bridge/pkg/ proto/**/**/**
|
|
|
|
|
|
|
|
tools/bin/buf protoc \
|
2020-10-28 14:41:35 -07:00
|
|
|
-Iproto \
|
|
|
|
-Ithird_party/googleapis \
|
|
|
|
--plugin tools/bin/protoc-gen-go-grpc \
|
|
|
|
--go-grpc_out=bridge/pkg/ proto/**/**/**
|