Skip to content

Commit

Permalink
CI config updates: do not send CI emails unless explicitly enabled, u…
Browse files Browse the repository at this point in the history
…se 'gem update --system', and send emails from an address which can post to the core list

[#3116 state:committed]

Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
  • Loading branch information
thewoolleyman authored and jeremy committed Aug 30, 2009
1 parent 13fb26b commit 70ed47f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions ci/cruise_config.rb
@@ -1,5 +1,9 @@
Project.configure do |project|
project.build_command = 'ruby ci/ci_build.rb'
project.email_notifier.emails = ['rubyonrails-core@googlegroups.com', 'thewoolleyman@gmail.com','michael@koziarski.com', 'david@loudthinking.com', 'jeremy@bitsweat.net', 'josh@joshpeek.com', 'pratiknaik@gmail.com', 'wycats@gmail.com']
project.email_notifier.from = 'thewoolleyman+railsci@gmail.com'
# 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

0 comments on commit 70ed47f

Please sign in to comment.