diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-10 17:19:39 -0800 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-10 17:19:39 -0800 |
commit | 0df1dc5a7274b28ed9474e871e6af1ca9b9a2fe9 (patch) | |
tree | dc9a5ff473b56d25eda7b26cf12fbdf048e9e9a6 /ci | |
parent | 486a63c258c7eff44ece0dbfbca4e6a08eeb01a0 (diff) | |
download | rails-0df1dc5a7274b28ed9474e871e6af1ca9b9a2fe9.tar.gz rails-0df1dc5a7274b28ed9474e871e6af1ca9b9a2fe9.tar.bz2 rails-0df1dc5a7274b28ed9474e871e6af1ca9b9a2fe9.zip |
CI: yeah, run those tests
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/ci_build.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ci/ci_build.rb b/ci/ci_build.rb index 1b8a880a2f..7ae660fb7d 100755 --- a/ci/ci_build.rb +++ b/ci/ci_build.rb @@ -33,7 +33,7 @@ cd "#{root_dir}/activesupport" do puts puts "[CruiseControl] Building ActiveSupport" puts - build_results[:activesupport] = rake + build_results[:activesupport] = rake 'test' build_results[:activesupport_isolated] = rake 'test:isolated' end @@ -41,14 +41,14 @@ cd "#{root_dir}/railties" do puts puts "[CruiseControl] Building RailTies" puts - build_results[:railties] = rake + build_results[:railties] = rake 'test' end cd "#{root_dir}/actionpack" do puts puts "[CruiseControl] Building ActionPack" puts - build_results[:actionpack] = rake + build_results[:actionpack] = rake 'test' build_results[:actionpack_isolated] = rake 'test:isolated' end @@ -56,14 +56,14 @@ cd "#{root_dir}/actionmailer" do puts puts "[CruiseControl] Building ActionMailer" puts - build_results[:actionmailer] = rake + build_results[:actionmailer] = rake 'test' end cd "#{root_dir}/activemodel" do puts puts "[CruiseControl] Building ActiveModel" puts - build_results[:activemodel] = rake + build_results[:activemodel] = rake 'test' end rm_f "#{root_dir}/activeresource/debug.log" @@ -71,7 +71,7 @@ cd "#{root_dir}/activeresource" do puts puts "[CruiseControl] Building ActiveResource" puts - build_results[:activeresource] = rake + build_results[:activeresource] = rake 'test' end rm_f "#{root_dir}/activerecord/debug.log" |