2008-08-24 10:25:05 -04:00
|
|
|
Project.configure do |project|
|
2009-08-16 22:05:45 -04:00
|
|
|
# Send email notifications about broken and fixed builds to core mailing list
|
2009-08-30 02:43:53 -04:00
|
|
|
if Socket.gethostname =~ /ci.rubyonrails.org/ && ENV['ENABLE_RAILS_CI_EMAILS'] == 'true'
|
2009-08-16 22:05:45 -04:00
|
|
|
project.email_notifier.emails = ['rubyonrails-core@googlegroups.com']
|
|
|
|
end
|
|
|
|
|
2009-08-30 02:43:53 -04:00
|
|
|
project.build_command = 'sudo gem update --system && ruby ci/ci_build.rb'
|
|
|
|
project.email_notifier.from = 'thewoolleyman@gmail.com'
|
2008-08-24 10:25:05 -04:00
|
|
|
end
|