aboutsummaryrefslogtreecommitdiffstats
path: root/ci/cruise_config.rb
blob: 439a93d69b07da124c33348720707e65604a9c11 (plain) (blame)
1
2
3
4
5
6
7
8
9
Project.configure do |project|
  # Send email notifications about broken and fixed builds to core mailing list
  if Socket.gethostname =~ /ci.rubyonrails.org/
    project.email_notifier.emails = ['rubyonrails-core@googlegroups.com']
  end

  project.build_command = 'sudo update_rubygems && ruby ci/ci_build.rb'
  project.email_notifier.from = 'thewoolleyman+railsci@gmail.com'
end