blob: 572c4caee32e04ad3f691a1494d5df041a11cebf [file] [log] [blame]
Mike Kruskalfc46e872022-12-16 15:31:27 -08001#!/bin/bash
2
3# This script updates all our generated files and exports them to a given
4# directory. This is intended to simplify the process of updating these from
5# google3. After copybara generates a branch for testings, run the following
6# from a git clone:
7# git fetch --all
8# git checkout upstream/<copybara branch>
9# ./google3_export_generated_files <ldap>/<citc_workspace>
10#
11# Note: this is a temporary script and won't be needed once we automatically
12# update these.
13
14set -ex
15
16OUTPUT_PATH=/google/src/cloud/$1/google3/third_party/protobuf/github
17
18update_staleness() {
19 TARGET_DIR=$1
20 TARGET=$2
21 GEN_PATH=$3
22 GEN_FILES=${@:4}
23 bazel build //$TARGET_DIR:$TARGET
24 bazel-bin/$TARGET_DIR/$TARGET --fix
25 for file in $GEN_FILES; do
26 cp $GEN_PATH/$file $OUTPUT_PATH/$GEN_PATH/
27 done
28}
29
Mike Kruskal232ecf42023-01-14 00:09:40 -080030update_staleness ruby/ext/google/protobuf_c test_amalgamation_staleness ruby/ext/google/protobuf_c ruby-upb.*
Mike Kruskalfc46e872022-12-16 15:31:27 -080031update_staleness php test_amalgamation_staleness php/ext/google/protobuf php-upb.*