7 Star 13 Fork 10

Gitee 极速下载 / google-protobufsource

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/protocolbuffers/protobuf
克隆/下载
google3_export_generated_files.sh 998 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mike Kruskal 提交于 2023-01-14 00:09 . Bump protobuf to latest upb version.
#!/bin/bash
# This script updates all our generated files and exports them to a given
# directory. This is intended to simplify the process of updating these from
# google3. After copybara generates a branch for testings, run the following
# from a git clone:
# git fetch --all
# git checkout upstream/<copybara branch>
# ./google3_export_generated_files <ldap>/<citc_workspace>
#
# Note: this is a temporary script and won't be needed once we automatically
# update these.
set -ex
OUTPUT_PATH=/google/src/cloud/$1/google3/third_party/protobuf/github
update_staleness() {
TARGET_DIR=$1
TARGET=$2
GEN_PATH=$3
GEN_FILES=${@:4}
bazel build //$TARGET_DIR:$TARGET
bazel-bin/$TARGET_DIR/$TARGET --fix
for file in $GEN_FILES; do
cp $GEN_PATH/$file $OUTPUT_PATH/$GEN_PATH/
done
}
update_staleness ruby/ext/google/protobuf_c test_amalgamation_staleness ruby/ext/google/protobuf_c ruby-upb.*
update_staleness php test_amalgamation_staleness php/ext/google/protobuf php-upb.*
1
https://gitee.com/mirrors/protobufsource.git
git@gitee.com:mirrors/protobufsource.git
mirrors
protobufsource
google-protobufsource
main

搜索帮助