mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Update CI config
This commit is contained in:
parent
f34f0b7e08
commit
452922a359
2 changed files with 9 additions and 9 deletions
|
@ -1,9 +1,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 1.6.2 && ruby ci/ci_build.rb'
|
||||
project.email_notifier.from = 'rails-ci@wyeworks.com'
|
||||
|
||||
project.build_command = 'sudo gem update --system && ruby ci/ci_build.rb'
|
||||
project.email_notifier.from = 'thewoolleyman@gmail.com'
|
||||
# project.campfire_notifier.account = 'rails'
|
||||
# project.campfire_notifier.token = ''
|
||||
# project.campfire_notifier.room = 'Rails 3'
|
||||
# project.campfire_notifier.ssl = true
|
||||
end
|
||||
|
|
|
@ -45,16 +45,16 @@ Configuration.dashboard_refresh_interval = 60.seconds
|
|||
|
||||
# Site-wide setting for the email "from" field. This can also be set on per-project basis,
|
||||
# through project.email.notifier.from attribute
|
||||
Configuration.email_from = 'thewoolleyman+railsci@gmail.com'
|
||||
Configuration.email_from = 'rails-ci@wyeworks.com'
|
||||
|
||||
# Root URL of the dashboard application. Setting this attribute allows various notifiers to include a link to the
|
||||
# build page in the notification message.
|
||||
Configuration.dashboard_url = 'http://ci.rubyonrails.org/'
|
||||
Configuration.dashboard_url = 'http://rails-ci.wyeworks.com/'
|
||||
|
||||
# If you don't want to allow triggering builds through dashboard Build Now button. Useful when you host CC.rb as a
|
||||
# public web site (such as http://cruisecontrolrb.thoughtworks.com/projects - try clicking on Build Now button there
|
||||
# and see what happens):
|
||||
# Configuration.disable_build_now = true
|
||||
Configuration.disable_build_now = true
|
||||
|
||||
# If you want to only allow one project to build at a time, uncomment this line
|
||||
# by default, cruise allows multiple projects to build at a time
|
||||
|
|
Loading…
Reference in a new issue