mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
65 lines
1.9 KiB
Bash
Executable File
65 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
install_dependencies() {
|
|
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.26.0
|
|
|
|
go get google.golang.org/protobuf/runtime/protoimpl@v1.26.0
|
|
go get google.golang.org/protobuf/reflect/protoreflect@v1.26.0
|
|
go get google.golang.org/protobuf/types/known/timestamppb@v1.26.0
|
|
|
|
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1.0
|
|
|
|
go get github.com/golang/mock/mockgen@v1.5.0
|
|
|
|
go get github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway@v2.2.0
|
|
}
|
|
|
|
go_protoc() {
|
|
local ROOT_DIR=$1
|
|
# shellcheck disable=2035
|
|
protoc \
|
|
-I /usr/lib/protoc/include -I"$ROOT_DIR" -I. \
|
|
--go_out=go \
|
|
--go_opt=paths=source_relative \
|
|
--go-grpc_out=go \
|
|
--go-grpc_opt=paths=source_relative \
|
|
*.proto
|
|
}
|
|
|
|
typescript_protoc() {
|
|
local ROOT_DIR=$1
|
|
local MODULE_DIR
|
|
# Assigning external program output directly
|
|
# after the `local` keyword masks the return value (Could be an error).
|
|
# Should be done in a separate line.
|
|
MODULE_DIR=$(pwd)
|
|
|
|
pushd typescript > /dev/null || exit
|
|
|
|
yarn install
|
|
|
|
rm -rf "$MODULE_DIR"/typescript/src/*pb*.*
|
|
|
|
protoc \
|
|
--plugin=protoc-gen-grpc="$MODULE_DIR"/typescript/node_modules/.bin/grpc_tools_node_protoc_plugin \
|
|
--js_out=import_style=commonjs,binary:src \
|
|
--grpc_out=grpc_js:src \
|
|
-I /usr/lib/protoc/include -I"$ROOT_DIR" -I. -I"$MODULE_DIR" \
|
|
"$MODULE_DIR"/*.proto
|
|
|
|
protoc \
|
|
--plugin=protoc-gen-ts="$MODULE_DIR"/typescript/node_modules/.bin/protoc-gen-ts \
|
|
--ts_out=grpc_js:src \
|
|
-I /usr/lib/protoc/include -I"$ROOT_DIR" -I. -I"$MODULE_DIR" \
|
|
"$MODULE_DIR"/*.proto
|
|
|
|
# shellcheck disable=SC2011
|
|
ls -1 "$MODULE_DIR"/typescript/src/*_pb.d.ts | xargs sed -i -e "s/[[:space:]]*$//" || exit
|
|
|
|
popd > /dev/null || exit
|
|
}
|
|
|
|
update_license() {
|
|
leeway run components:update-license-header
|
|
}
|