aboutsummaryrefslogtreecommitdiffstats
path: root/ci/cruise_config.rb
blob: 9c7fa98a70d333cf90420a1a28ce7caedd21e42c (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/ && 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