Skip to content

Commit 6a5ec6e

Browse files
authored
Fix JRuby gem installation on CI (#2282)
* Fix JRuby gem installation on CI Apparently it freezes on doc installation phase: $ script/update_rubygems_and_install_bundler Updating rubygems-update Fetching rubygems-update-3.1.2.gem Successfully installed rubygems-update-3.1.2 Parsing documentation for rubygems-update-3.1.2 Installing ri documentation for rubygems-update-3.1.2 No output has been received in the last 10m0s, this potentially indicates a stalled build or something wrong with the build itself. Check the details on how to adjust your build configuration on: https://docs.travis-ci.com/user/common-build-problems/#build-times-out-because-no-output-was-received The build has been terminated https://travis-ci.org/rspec/rspec-rails/jobs/658127232
1 parent 2f22bf3 commit 6a5ec6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

script/update_rubygems_and_install_bundler

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
set -e
66
source script/functions.sh
77

8-
yes | gem update --system
9-
yes | gem install bundler
8+
gem update --no-document --system
9+
gem install --no-document bundler

0 commit comments

Comments
 (0)