Jonathan Naor
2008-Mar-31 06:57 UTC
[Cruisecontrolrb-users] cruisecontrol.rb with C++ projects
Hi, This has probably been asked a hundred times, but I couldn''t find the answer: how do I configure cruisecontrol.rb to build a c/c++ makefile? Thanks This e-mail message has been sent by Elbit Systems Ltd. and is for the use of the intended recipients only. The message may contain privileged or commercially sensitive information . If you are not the intended recipient you are hereby notified that any use, distribution or copying of this communication is strictly prohibited, and you are requested to delete the e-mail and any attachments and notify the sender immediately. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/cruisecontrolrb-users/attachments/20080331/8878e6da/attachment.html
Jeremy Stell-Smith
2008-Mar-31 20:27 UTC
[Cruisecontrolrb-users] cruisecontrol.rb with C++ projects
cc.rb will work with anything that you can kick off from command line and will return a non-zero status code iff it fails. so, to configure this, your cruise_config.rb file (either on the server or in your project''s root directory) should look something like this : Project.configure do |project| project.build_command = "COMMAND" ... end where instead of command you put the command to build your project Jeremy On Mon, Mar 31, 2008 at 12:57 AM, Jonathan Naor <jnaor at elbit.co.il> wrote:> Hi, > > This has probably been asked a hundred times, but I couldn''t find the > answer: how do I configure cruisecontrol.rb to build a c/c++ makefile? > > Thanks ** > *This e-mail message has been sent by Elbit Systems Ltd. * > *and is for the use of the intended recipients only. > The message may contain privileged or commercially sensitive information . > If you are not the intended recipient you are hereby notified that any > use, > distribution or copying of this communication is strictly prohibited, > and you are requested to delete the e-mail and any attachments* > *and notify the sender immediately.* > > _______________________________________________ > Cruisecontrolrb-users mailing list > Cruisecontrolrb-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users > >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/cruisecontrolrb-users/attachments/20080331/6940a982/attachment-0001.html