<= Home

Build Action Plugin for CruiseControl.rb

Posted about about 1 year ago

Download at: http://rubyforge.org/projects/cc-post-build/

I created this plugin to deploy to our integration environment every time the build is successful.

Installation:

Configuration should look like:

Project.configure do |project|

  # other configurations

  # enable action on successful build
  project.post_build_action.on_successful_build = "cap deploy_to_integration -p somepassword" 

end