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, I can't get 'my_build_script.sh' to run. It kicks off by running 'bundle install'. Any ideas?

link|improve this question

50% accept rate
I'm confused--do you still have a question, or are you satified with commenting out the above code as per your update? – mwolfetech Sep 8 '11 at 1:04
feedback

1 Answer

up vote 0 down vote accepted

In cruisecontrol.rb in app/models/build.rb:42

if @project.uses_bundler?
 execute self.bundle_install, :stdout => build_log_path, :stderr => build_log_path, :env => project.environment
end

It is hard coded to run bundler first if it detects a Gemfile, I commented this out and did it manually after the rvm gemset was set and it worked.

Here is a forked version (massive ui changes though) https://github.com/secoif/cruisecontrol.rb

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.