aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/artifacts/build_artifact_ruby.sh
diff options
context:
space:
mode:
authorGravatar Alexander Polcyn <apolcyn@google.com>2017-02-02 09:59:26 -0800
committerGravatar Alexander Polcyn <apolcyn@google.com>2017-02-02 09:59:26 -0800
commitb7dce2dbc9845cd0009855c905d86219242df637 (patch)
treece17e9454647be519b242d738394ae04d1b603e0 /tools/run_tests/artifacts/build_artifact_ruby.sh
parentb39eb5302d17e25532e7de5a01b3148a1820f009 (diff)
wrap all bundle install commands outside docker with check for mac workaround
Diffstat (limited to 'tools/run_tests/artifacts/build_artifact_ruby.sh')
-rwxr-xr-xtools/run_tests/artifacts/build_artifact_ruby.sh8
1 files changed, 1 insertions, 7 deletions
diff --git a/tools/run_tests/artifacts/build_artifact_ruby.sh b/tools/run_tests/artifacts/build_artifact_ruby.sh
index 16266a9230..ca461ba561 100755
--- a/tools/run_tests/artifacts/build_artifact_ruby.sh
+++ b/tools/run_tests/artifacts/build_artifact_ruby.sh
@@ -53,13 +53,7 @@ set +ex
rvm use default
gem install bundler --update
-if [ "$SYSTEM" == "Darwin" ] ; then
- # Workaround for crash during bundle install
- # See suggestion in https://github.com/bundler/bundler/issues/3692
- BUNDLE_SPECIFIC_PLATFORM=true bundle install
-else
- bundle install
-fi
+tools/run_tests/helper_scripts/bundle_install_wrapper.sh
set -ex