Fix CI failures

pull/10758/head
Mike Kruskal 2 years ago
parent b81def1cbd
commit 0d649bae3e
  1. 3
      kokoro/release/ruby/linux/ruby/ruby_build.sh
  2. 3
      kokoro/release/ruby/macos/ruby/ruby_build.sh
  3. 2
      php/tests/compile_extension.sh

@ -10,6 +10,9 @@ bazel build //:protoc
cp bazel-bin/protoc .
export PROTOC=$PWD/protoc
# Pull in dependencies.
git submodule update --init --recursive
umask 0022
pushd ruby
gem install bundler -v 2.1.4

@ -6,6 +6,9 @@ set -ex
bazel build //:protoc
export PROTOC=$PWD/bazel-bin/protoc
# Pull in dependencies.
git submodule update --init --recursive
umask 0022
pushd ruby
bundle update && bundle exec rake gem:native

@ -12,7 +12,7 @@ git submodule update --init --recursive
# (and for the release to PECL).
rm -rf ext/google/protobuf/third_party
mkdir -p ext/google/protobuf/third_party/utf8_range
cp ../third_party/utf8_range/* ext/google/protobuf/third_party/utf8_range
cp -r ../third_party/utf8_range/* ext/google/protobuf/third_party/utf8_range
echo "Copied utf8_range from ../third_party -> ext/google/protobuf/third_party"

Loading…
Cancel
Save