aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-10-14 19:36:55 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-10-14 19:36:55 -0700
commite19ab99134a80ad2951473f8c2c6148c8f1839fd (patch)
treefa789803fec44bdc45c98bd0ed3966cd89d8b8bc /ci
parentc09a5ffea7780a0f940f3f963c892f0ae1316802 (diff)
downloadrails-e19ab99134a80ad2951473f8c2c6148c8f1839fd.tar.gz
rails-e19ab99134a80ad2951473f8c2c6148c8f1839fd.tar.bz2
rails-e19ab99134a80ad2951473f8c2c6148c8f1839fd.zip
CI bundles Active Record dependencies before running (pulls in Arel)
Diffstat (limited to 'ci')
-rwxr-xr-xci/ci_build.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/ci_build.rb b/ci/ci_build.rb
index b9c321efef..3b06c9c7ce 100755
--- a/ci/ci_build.rb
+++ b/ci/ci_build.rb
@@ -29,21 +29,21 @@ cd "#{root_dir}/activerecord" do
puts
puts "[CruiseControl] Building ActiveRecord with MySQL"
puts
- build_results[:activerecord_mysql] = system 'rake mysql:rebuild_databases && rake test_mysql'
+ build_results[:activerecord_mysql] = system 'gem bundle && rake mysql:rebuild_databases && rake test_mysql'
end
cd "#{root_dir}/activerecord" do
puts
puts "[CruiseControl] Building ActiveRecord with PostgreSQL"
puts
- build_results[:activerecord_postgresql8] = system 'rake postgresql:rebuild_databases && rake test_postgresql'
+ build_results[:activerecord_postgresql8] = system 'gem bundle && rake postgresql:rebuild_databases && rake test_postgresql'
end
cd "#{root_dir}/activerecord" do
puts
puts "[CruiseControl] Building ActiveRecord with SQLite 3"
puts
- build_results[:activerecord_sqlite3] = system 'rake test_sqlite3'
+ build_results[:activerecord_sqlite3] = system 'gem bundle && rake test_sqlite3'
end
cd "#{root_dir}/activemodel" do