Tagged Questions
5
votes
4answers
951 views
How do I integrate my continuous integration system with my bug tracking system?
I use cruisecontrol.rb for CI and FogBugz for bug tracking, but the more general the answers, the better.
First is the technical problem: is there an API for FogBugz? Are there good tutorials, or ...
3
votes
6answers
295 views
Remotely Track the Current Branch in Git
I'm moving my continuous testing to a dedicated server (autotest slows down my local laptop too much). What I'd like is for my testing server (which happens to be running CruiseControl.rb) to be ...
2
votes
3answers
690 views
Continuous integration / Cruisecontrol advice
I've been tasked with setting up a continuous integration server for our project and am weighing up the options.
I would like to use cc.rb rather than cc for the simple fact that I'd rather be ...
1
vote
1answer
62 views
Using build_command with CruiseControl.rb
I'm using cruisecontrol.rb for continuous integration, and have the following settings in cruise_config.rb.
Project.configure do |project|
...
project.build_command = 'my_build_script.sh'
...
...
0
votes
1answer
203 views
CruiseControl.rb always running my projects in production mode?
I'm curious as to why when I build my project using CruiseControl.rb, it runs it in production mode? Even though my application should not be in production mode. I even tried to specify: ...