2009-02-04 21:26:08 +01:00
|
|
|
Project.configure do |project|
|
2009-09-05 09:01:46 +02:00
|
|
|
# Send email notifications about broken and fixed builds to core mailing list
|
|
|
|
if Socket.gethostname =~ /ci.rubyonrails.org/ && ENV['ENABLE_RAILS_CI_EMAILS'] == 'true'
|
|
|
|
project.email_notifier.emails = ['rubyonrails-core@googlegroups.com']
|
|
|
|
end
|
|
|
|
|
|
|
|
project.build_command = 'sudo gem update --system && ruby ci/ci_build.rb'
|
|
|
|
project.email_notifier.from = 'thewoolleyman@gmail.com'
|
2009-02-04 21:26:08 +01:00
|
|
|
end
|