1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Try to remotely troubleshoot bundler issue in CI

This commit is contained in:
Jeremy Kemper 2009-11-04 11:50:41 -08:00
parent 0e64eab6a2
commit d64e87edd6

View file

@ -6,7 +6,7 @@ include FileUtils
puts "[CruiseControl] Rails build" puts "[CruiseControl] Rails build"
build_results = {} build_results = {}
root_dir = File.expand_path(File.dirname(__FILE__) + "/..") root_dir = File.expand_path('../..', __FILE__)
# Requires gem home and path to be writeable and/or overridden to be ~/.gem, # Requires gem home and path to be writeable and/or overridden to be ~/.gem,
# Will enable when RubyGems supports this properly (in a coming release) # Will enable when RubyGems supports this properly (in a coming release)
@ -20,7 +20,7 @@ cd root_dir do
puts puts
puts "[CruiseControl] Bundling RubyGems" puts "[CruiseControl] Bundling RubyGems"
puts puts
build_results[:bundle] = system 'rm -rf vendor && gem bundle' build_results[:bundle] = system 'rm -rf vendor && gem --debug bundle'
end end
cd "#{root_dir}/activesupport" do cd "#{root_dir}/activesupport" do