ruby bundle install work around to build packages on mac

pull/9553/head
Alexander Polcyn 8 years ago
parent de3ed4c670
commit 513e6b8599
  1. 10
      tools/run_tests/artifacts/build_artifact_ruby.sh

@ -52,7 +52,15 @@ fi
set +ex
rvm use default
gem install bundler --update
bundle install
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
set -ex
rake gem:native

Loading…
Cancel
Save