mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
d8e7ff12a8
[#3116 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
9 lines
421 B
Ruby
9 lines
421 B
Ruby
Project.configure do |project|
|
|
# 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'
|
|
end
|