Questions tagged [cruisecontrol.rb]

23 questions
9
votes
2 answers

Can you use CruiseControl to build Cocoa/Objective-C projects?

Has anyone ever set up Cruise Control to build an OS X Cocoa/Objective-C project? If so, is there a preferred flavor of CruiseControl (CruiseControl.rb or just regular CruiseControl) that would be easier to do this with. I currently have a Ruby…
Nick Haddad
  • 8,767
  • 3
  • 34
  • 38
6
votes
3 answers

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 better yet, pre-written code? Second is the…
James A. Rosen
  • 64,193
  • 61
  • 179
  • 261
3
votes
2 answers

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' ... end I've tried to follow this blog post. However,…
sren
  • 3,513
  • 4
  • 25
  • 28
3
votes
6 answers

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 continuously getting my latest (committed) changes via…
Craig Walker
  • 49,871
  • 54
  • 152
  • 212
2
votes
2 answers

Problem in setting up Cruise Control in RAILS 3

I just setup cruise control on my server for my projects . But now i am little bit confused how these rake task and capistrano work . I tried lots of settings but still no success . If somebody help how to run all rake task and after successful…
Vivek Parihar
  • 2,318
  • 18
  • 18
2
votes
3 answers

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 writing Ruby than XML. From what I can see cc is a more…
ChrisInCambo
  • 8,455
  • 15
  • 50
  • 63
2
votes
1 answer

Automated testing of privileged operations

How do you unit/integration test code that requires a different privilege level than exists in your continuous integration environment? In my non-root, CCRB-driven build environment, I've got some utility functions that assume privileges that don't…
pilcrow
  • 56,591
  • 13
  • 94
  • 135
1
vote
0 answers

Mercurial branches don't seem to be honored by CruiseControl

I am attempting to use cruisecontrol.rb for continuous integration. The code that is being built resides in a Mercurial repository. What I would like is for CI to run only when a change is pushed to a specific branch. The documentation indicates…
toadjamb
  • 934
  • 1
  • 9
  • 14
1
vote
2 answers

RoR: CI and staging server

for our Ruby on Rails project, we want to use CruiseControl.rb for CI and we want to have a staging server. I don't have any experience with CruiseControl, so maybe someone can answer some of the questions below: Is it possible to use CruiseControl…
1
vote
2 answers

Ruby on Rails and CruiseControl.rb

How do I set up the email notification with CruiseControl.rb? I've specified the ActionMailer::Base.smtp_settings in the site-config.rb but where do I specify who will receive the email notification? Do I need to create a config.xml file? If so,…
Max
  • 287
  • 2
  • 4
  • 9
1
vote
1 answer

Advice on Rails and CI, how often does this run exactly? or what is common practice

First off, is autotest and cruisecontrol performing the same sort of CI tasks? I want to setup something that will run my unit tests, and also integration tests on my local MBP computer i.e. I don't have a seperate computer for this yet. Is autotest…
Blankman
  • 259,732
  • 324
  • 769
  • 1,199
1
vote
1 answer

CruiseControl.rb throwing exception with Postgres

In a VPS I have Postgres installed and 2 Rails projects. Both are running on production mode and connecting PG as different users. Now I want to set CruiseControl.rb for one of them. Everything went perfectly, except when cruise is trying to run the…
intellidiot
  • 11,108
  • 4
  • 34
  • 41
1
vote
0 answers

Setting up a Cruise control with rspec, metrical, rcov for Rails

I would like to setup cruisecontrol with rspec and rcov (+ metrical). I see one old post http://jerrett.net/entries/general/enforcing-spec-coverage-with-cruisecontrol-rcov-and-rspec written in 2007. Is it possible for some one to give me more…
Dhepthi
  • 453
  • 4
  • 11
1
vote
3 answers

CruiseControl.rb SVN Access Denied

I'm having a problem where I have been able to add a project to CC.rb perfectly fine but when I start the service I get "Access Denied" messages each time it checks with Subversion for a newer version. I'm running with --trace and running the exact…
Garry Shutler
  • 32,260
  • 12
  • 84
  • 119
1
vote
2 answers

CruiseControl.rb PATH

I'm trying to get CruiseControl.rb to run rcov during a build. It's currently failing with the following error: sh: rcov: not found Since I can run rcov from the shell when I log in, I figure that this is a PATH problem. (Additionally, I can run…
Craig Walker
  • 49,871
  • 54
  • 152
  • 212
1
2