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

CI: blow away bundle path between runs to solve 1.8/1.9 binary incompat

This commit is contained in:
Jeremy Kemper 2010-02-11 17:43:46 -08:00
parent 3d3e08623f
commit 7b663e2feb

View file

@ -27,7 +27,7 @@ cd root_dir do
puts
puts "[CruiseControl] Bundling RubyGems"
puts
build_results[:bundle] = system 'env CI=1 bundle install'
build_results[:bundle] = system 'rm -rf ~/.bundle; env CI=1 bundle install'
end
cd "#{root_dir}/activesupport" do