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

CI bundles Active Record dependencies before running (pulls in Arel)

This commit is contained in:
Jeremy Kemper 2009-10-14 19:36:55 -07:00
parent c09a5ffea7
commit e19ab99134

View file

@ -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