Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
349 B
20 lines
349 B
5 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
# change to repo root
|
||
|
cd $(dirname $0)/../../../..
|
||
|
|
||
|
# all artifacts come here
|
||
|
mkdir artifacts
|
||
|
export ARTIFACT_DIR=$(pwd)/artifacts
|
||
|
|
||
|
# ruby environment
|
||
|
bash kokoro/release/ruby/macos/ruby/ruby_build_environment.sh
|
||
|
|
||
|
gem install rubygems-update
|
||
|
update_rubygems
|
||
|
|
||
|
# build artifacts
|
||
|
bash kokoro/release/ruby/macos/ruby/ruby_build.sh
|