<= 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:
- Download .zip at ruby forge
- Unzip files to cruisecontrol.rb /builder_plugins/installed directory
- Configure different post build actions for each project in the cruise_config.rb file
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