On Tue, Sep 15, 2009 at 9:42 AM, Philipp Bolliger <[email protected]> wrote: > i want to use cruisecontrol.rb to run ‘rake test’ (every time a new revision > is in the svn repo) and ‘rake metrics:all’ (let’s say every 24 hours). how > do i have to configure cruisecontrol.rb? both rake tasks work. however, when > i configure cruisecontrol.rb as described on the metric_fu website, i.e. add > 'project.rake_task = ‘metrics:all’ project.scheduler.polling_interval = > 24.hours’ to the projects cruise_config.rb, only the metrics:all task is > executed, but not the tests. how do i configure cruisecontrol.rb so that > both are run?
Can you use something like: project.build_command = 'rake metrics:all test' -- Chad _______________________________________________ Cruisecontrolrb-users mailing list [email protected] http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users
