aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2010-02-11 17:43:46 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2010-02-11 17:43:46 -0800
commit7b663e2feb31161a8835e35c8f682cdeb23ec4b3 (patch)
treef49de33d0ef891e980122e3c477117d944f8e3e3 /ci
parent3d3e08623f6d454cbece881a1385ed0e99cb44c7 (diff)
downloadrails-7b663e2feb31161a8835e35c8f682cdeb23ec4b3.tar.gz
rails-7b663e2feb31161a8835e35c8f682cdeb23ec4b3.tar.bz2
rails-7b663e2feb31161a8835e35c8f682cdeb23ec4b3.zip
CI: blow away bundle path between runs to solve 1.8/1.9 binary incompat
Diffstat (limited to 'ci')
-rwxr-xr-xci/ci_build.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/ci_build.rb b/ci/ci_build.rb
index 6dcff3149a..0c7dd837b1 100755
--- a/ci/ci_build.rb
+++ b/ci/ci_build.rb
@@ -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