mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
CI: yeah, run those tests
This commit is contained in:
parent
486a63c258
commit
0df1dc5a72
1 changed files with 6 additions and 6 deletions
|
@ -33,7 +33,7 @@ cd "#{root_dir}/activesupport" do
|
||||||
puts
|
puts
|
||||||
puts "[CruiseControl] Building ActiveSupport"
|
puts "[CruiseControl] Building ActiveSupport"
|
||||||
puts
|
puts
|
||||||
build_results[:activesupport] = rake
|
build_results[:activesupport] = rake 'test'
|
||||||
build_results[:activesupport_isolated] = rake 'test:isolated'
|
build_results[:activesupport_isolated] = rake 'test:isolated'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -41,14 +41,14 @@ cd "#{root_dir}/railties" do
|
||||||
puts
|
puts
|
||||||
puts "[CruiseControl] Building RailTies"
|
puts "[CruiseControl] Building RailTies"
|
||||||
puts
|
puts
|
||||||
build_results[:railties] = rake
|
build_results[:railties] = rake 'test'
|
||||||
end
|
end
|
||||||
|
|
||||||
cd "#{root_dir}/actionpack" do
|
cd "#{root_dir}/actionpack" do
|
||||||
puts
|
puts
|
||||||
puts "[CruiseControl] Building ActionPack"
|
puts "[CruiseControl] Building ActionPack"
|
||||||
puts
|
puts
|
||||||
build_results[:actionpack] = rake
|
build_results[:actionpack] = rake 'test'
|
||||||
build_results[:actionpack_isolated] = rake 'test:isolated'
|
build_results[:actionpack_isolated] = rake 'test:isolated'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -56,14 +56,14 @@ cd "#{root_dir}/actionmailer" do
|
||||||
puts
|
puts
|
||||||
puts "[CruiseControl] Building ActionMailer"
|
puts "[CruiseControl] Building ActionMailer"
|
||||||
puts
|
puts
|
||||||
build_results[:actionmailer] = rake
|
build_results[:actionmailer] = rake 'test'
|
||||||
end
|
end
|
||||||
|
|
||||||
cd "#{root_dir}/activemodel" do
|
cd "#{root_dir}/activemodel" do
|
||||||
puts
|
puts
|
||||||
puts "[CruiseControl] Building ActiveModel"
|
puts "[CruiseControl] Building ActiveModel"
|
||||||
puts
|
puts
|
||||||
build_results[:activemodel] = rake
|
build_results[:activemodel] = rake 'test'
|
||||||
end
|
end
|
||||||
|
|
||||||
rm_f "#{root_dir}/activeresource/debug.log"
|
rm_f "#{root_dir}/activeresource/debug.log"
|
||||||
|
@ -71,7 +71,7 @@ cd "#{root_dir}/activeresource" do
|
||||||
puts
|
puts
|
||||||
puts "[CruiseControl] Building ActiveResource"
|
puts "[CruiseControl] Building ActiveResource"
|
||||||
puts
|
puts
|
||||||
build_results[:activeresource] = rake
|
build_results[:activeresource] = rake 'test'
|
||||||
end
|
end
|
||||||
|
|
||||||
rm_f "#{root_dir}/activerecord/debug.log"
|
rm_f "#{root_dir}/activerecord/debug.log"
|
||||||
|
|
Loading…
Reference in a new issue