From mperham at gmail.com Tue Nov 11 18:15:10 2008 From: mperham at gmail.com (Mike Perham) Date: Tue, 11 Nov 2008 17:15:10 -0600 Subject: [Cruisecontrolrb-users] build reaper not working? Message-ID: I've uncommented the line at the bottom of config/site_config.rb to keep 20 builds. Looking in ~/.cruise/projects/ I see 66 builds. I don't see any smoking gun in log/production.log. The build output and ccrb are running as the same user. Why aren't my builds reaping? From matt at mattwynne.net Wed Nov 12 03:38:36 2008 From: matt at mattwynne.net (Matt Wynne) Date: Wed, 12 Nov 2008 08:38:36 +0000 Subject: [Cruisecontrolrb-users] build reaper not working? In-Reply-To: References: Message-ID: <6B94ECB6-4F83-4A26-9D5E-B16C5531515E@mattwynne.net> Did you restart your cruise server / daemon? On 11 Nov 2008, at 23:15, Mike Perham wrote: > I've uncommented the line at the bottom of config/site_config.rb to > keep 20 builds. Looking in ~/.cruise/projects/ I see 66 > builds. I don't see any smoking gun in log/production.log. The build > output and ccrb are running as the same user. Why aren't my builds > reaping? > _______________________________________________ > Cruisecontrolrb-users mailing list > Cruisecontrolrb-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users From donnoman at gmail.com Wed Nov 12 16:32:25 2008 From: donnoman at gmail.com (Donovan Bray) Date: Wed, 12 Nov 2008 13:32:25 -0800 Subject: [Cruisecontrolrb-users] Does anybody have an example of setting up a timed build? Message-ID: <6657eb070811121332s1991bb94k1fd21107c54de513@mail.gmail.com> I have several build tasks I would like to go off at certain times instead of a polling cycle. In each project I want this behavior i've added: project.triggered_by = [] #manual build only I've been attempting to use cron to schedule a command line build; however the build lock files get in the way when the web interface is running. I don't want to have to stop the web interface in order to be able to have the builds run at specific times. Just erasing the builder.lock; doesn't seem to be doing the trick. 0 */4,11,13 * * * cruise rm /home/cruise/.cruise/projects/StagingTrunk/builder.lock; /usr/local/cruisecontrol/cruise build StagingTrunk What's the best solution? From mperham at gmail.com Wed Nov 12 16:54:43 2008 From: mperham at gmail.com (Mike Perham) Date: Wed, 12 Nov 2008 15:54:43 -0600 Subject: [Cruisecontrolrb-users] build reaper not working? In-Reply-To: <6B94ECB6-4F83-4A26-9D5E-B16C5531515E@mattwynne.net> References: <6B94ECB6-4F83-4A26-9D5E-B16C5531515E@mattwynne.net> Message-ID: Yes. In fact, I've rebooted the machine. Cruise still shows 50+ builds. On Wed, Nov 12, 2008 at 2:38 AM, Matt Wynne wrote: > Did you restart your cruise server / daemon? > > On 11 Nov 2008, at 23:15, Mike Perham wrote: > >> I've uncommented the line at the bottom of config/site_config.rb to >> keep 20 builds. Looking in ~/.cruise/projects/ I see 66 >> builds. I don't see any smoking gun in log/production.log. The build >> output and ccrb are running as the same user. Why aren't my builds >> reaping? From matt at mattwynne.net Wed Nov 12 17:00:29 2008 From: matt at mattwynne.net (Matt Wynne) Date: Wed, 12 Nov 2008 22:00:29 +0000 Subject: [Cruisecontrolrb-users] Does anybody have an example of setting up a timed build? In-Reply-To: <6657eb070811121332s1991bb94k1fd21107c54de513@mail.gmail.com> References: <6657eb070811121332s1991bb94k1fd21107c54de513@mail.gmail.com> Message-ID: <9174E783-93C3-44B8-B41F-0F8F2C8B5594@mattwynne.net> On 12 Nov 2008, at 21:32, Donovan Bray wrote: > I have several build tasks I would like to go off at certain times > instead of a polling cycle. > > In each project I want this behavior i've added: > > project.triggered_by = [] #manual build only > > I've been attempting to use cron to schedule a command line build; > however the build lock files get in the way when the web interface is > running. I don't want to have to stop the web interface in order to > be able to have the builds run at specific times. > > Just erasing the builder.lock; doesn't seem to be doing the trick. > > 0 */4,11,13 * * * cruise rm > /home/cruise/.cruise/projects/StagingTrunk/builder.lock; > /usr/local/cruisecontrol/cruise build StagingTrunk > > What's the best solution? I don't know if this qualifies as the best solution, but you might be able to do something like curl -d "" http://your-server/projects/build/the-project-to-build This looks to be what the 'Build Now' button does. cheers, Matt From matt at mattwynne.net Wed Nov 12 17:08:20 2008 From: matt at mattwynne.net (Matt Wynne) Date: Wed, 12 Nov 2008 22:08:20 +0000 Subject: [Cruisecontrolrb-users] build reaper not working? In-Reply-To: References: <6B94ECB6-4F83-4A26-9D5E-B16C5531515E@mattwynne.net> Message-ID: <15FF796D-3B23-40E0-82DD-5181D4CB3300@mattwynne.net> On 12 Nov 2008, at 21:54, Mike Perham wrote: > Yes. In fact, I've rebooted the machine. Cruise still shows 50+ > builds. Bummer. Here's what we have at ~/.cruise/site_config.rb BuildReaper.number_of_builds_to_keep = 20 That seems to be working for us. What version of ccrb are you running? Can you see the plugin inside the source code for the server? it should be in /lib/builder_plugins/ cheers, Matt From mperham at gmail.com Wed Nov 12 17:12:19 2008 From: mperham at gmail.com (Mike Perham) Date: Wed, 12 Nov 2008 16:12:19 -0600 Subject: [Cruisecontrolrb-users] build reaper not working? In-Reply-To: <15FF796D-3B23-40E0-82DD-5181D4CB3300@mattwynne.net> References: <6B94ECB6-4F83-4A26-9D5E-B16C5531515E@mattwynne.net> <15FF796D-3B23-40E0-82DD-5181D4CB3300@mattwynne.net> Message-ID: Yes, but my site_config is in CCRB_HOME/config/site_config.rb. Will that work? On Wed, Nov 12, 2008 at 4:08 PM, Matt Wynne wrote: > > On 12 Nov 2008, at 21:54, Mike Perham wrote: >> >> Yes. In fact, I've rebooted the machine. Cruise still shows 50+ builds. > > Bummer. Here's what we have at ~/.cruise/site_config.rb > > BuildReaper.number_of_builds_to_keep = 20 > > That seems to be working for us. What version of ccrb are you running? > > Can you see the plugin inside the source code for the server? it should be > in /lib/builder_plugins/ > > cheers, > Matt > _______________________________________________ > Cruisecontrolrb-users mailing list > Cruisecontrolrb-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users > From matt at mattwynne.net Wed Nov 12 17:33:43 2008 From: matt at mattwynne.net (Matt Wynne) Date: Wed, 12 Nov 2008 22:33:43 +0000 Subject: [Cruisecontrolrb-users] build reaper not working? In-Reply-To: References: <6B94ECB6-4F83-4A26-9D5E-B16C5531515E@mattwynne.net> <15FF796D-3B23-40E0-82DD-5181D4CB3300@mattwynne.net> Message-ID: <22EB6769-24B2-4693-ACD4-1B431DBBDFD0@mattwynne.net> On 12 Nov 2008, at 22:12, Mike Perham wrote: > Yes, but my site_config is in CCRB_HOME/config/site_config.rb. Will > that work? No idea, I'm not an expert, just a helpful individual :) And on your evidence, my guess is that it won't! Try using the one in CRUISE_DATA_ROOT instead and see if that does the trick. cheers, Matt > > > On Wed, Nov 12, 2008 at 4:08 PM, Matt Wynne > wrote: >> >> On 12 Nov 2008, at 21:54, Mike Perham wrote: >>> >>> Yes. In fact, I've rebooted the machine. Cruise still shows 50+ >>> builds. >> >> Bummer. Here's what we have at ~/.cruise/site_config.rb >> >> BuildReaper.number_of_builds_to_keep = 20 >> >> That seems to be working for us. What version of ccrb are you >> running? >> >> Can you see the plugin inside the source code for the server? it >> should be >> in /lib/builder_plugins/ >> >> cheers, >> Matt >> _______________________________________________ >> Cruisecontrolrb-users mailing list >> Cruisecontrolrb-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users >> > _______________________________________________ > Cruisecontrolrb-users mailing list > Cruisecontrolrb-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users From donnoman at gmail.com Wed Nov 12 18:29:26 2008 From: donnoman at gmail.com (Donovan Bray) Date: Wed, 12 Nov 2008 15:29:26 -0800 Subject: [Cruisecontrolrb-users] Does anybody have an example of setting up a timed build? In-Reply-To: <9174E783-93C3-44B8-B41F-0F8F2C8B5594@mattwynne.net> References: <6657eb070811121332s1991bb94k1fd21107c54de513@mail.gmail.com> <9174E783-93C3-44B8-B41F-0F8F2C8B5594@mattwynne.net> Message-ID: <6657eb070811121529p5780d0c3s8511fcb83d9dffbd@mail.gmail.com> That worked beautifully, thank you. So simple too. On Wed, Nov 12, 2008 at 2:00 PM, Matt Wynne wrote: > On 12 Nov 2008, at 21:32, Donovan Bray wrote: >> >> I have several build tasks I would like to go off at certain times >> instead of a polling cycle. >> >> In each project I want this behavior i've added: >> >> project.triggered_by = [] #manual build only >> >> I've been attempting to use cron to schedule a command line build; >> however the build lock files get in the way when the web interface is >> running. I don't want to have to stop the web interface in order to >> be able to have the builds run at specific times. >> >> Just erasing the builder.lock; doesn't seem to be doing the trick. >> >> 0 */4,11,13 * * * cruise rm >> /home/cruise/.cruise/projects/StagingTrunk/builder.lock; >> /usr/local/cruisecontrol/cruise build StagingTrunk >> >> What's the best solution? > > I don't know if this qualifies as the best solution, but you might be able > to do something like > > curl -d "" http://your-server/projects/build/the-project-to-build > > This looks to be what the 'Build Now' button does. > > cheers, > Matt > _______________________________________________ > Cruisecontrolrb-users mailing list > Cruisecontrolrb-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users > From xipher1 at gmail.com Wed Nov 12 21:32:11 2008 From: xipher1 at gmail.com (Kevin Willock) Date: Wed, 12 Nov 2008 19:32:11 -0700 Subject: [Cruisecontrolrb-users] Cruise Control Summary Message-ID: <14B908D7-3D7A-46DA-9A82-5449A461FC00@gmail.com> Is there a way to put a quick summary of tests that were run during the build? Even something simple like 42 tests ran, 8 failed or something of that sort... Any ideas? Thanks in advance. -k From alexey.verkhovsky at gmail.com Wed Nov 12 22:07:52 2008 From: alexey.verkhovsky at gmail.com (Alexey Verkhovsky) Date: Wed, 12 Nov 2008 20:07:52 -0700 Subject: [Cruisecontrolrb-users] Cruise Control Summary In-Reply-To: <14B908D7-3D7A-46DA-9A82-5449A461FC00@gmail.com> References: <14B908D7-3D7A-46DA-9A82-5449A461FC00@gmail.com> Message-ID: <3945c4270811121907y44cb7e9cw92ed05df342d49b0@mail.gmail.com> On Wed, Nov 12, 2008 at 7:32 PM, Kevin Willock wrote: > Is there a way to put a quick summary of tests that were run during the > build? > Make your build write it into the log file. -- Alex -------------- next part -------------- An HTML attachment was scrubbed... URL: From twalker at comverge.com Thu Nov 13 10:37:51 2008 From: twalker at comverge.com (Tim Walker) Date: Thu, 13 Nov 2008 10:37:51 -0500 Subject: [Cruisecontrolrb-users] svn can't get user password on build, MacOS X 10.5 Message-ID: Hi Guys, Very much a CruiseControlRB newbie so please bear with me. I installed CruiseControlRB on my MacOSX 10.4 w/o issue. I then installed in on a Lepoard Mac server, same SVN repository, and the installation worked the same. The "cruise add" created the project and successfully checked out the latest version from the repository. Now, however, the build fails with the error: BuilderError: svn can't get password. I've tried "add" ing the project with From twalker at comverge.com Thu Nov 13 11:53:33 2008 From: twalker at comverge.com (Tim Walker) Date: Thu, 13 Nov 2008 09:53:33 -0700 Subject: [Cruisecontrolrb-users] svn can't get user password on build, MacOS X 10.5 In-Reply-To: Message-ID: OK solved this, or at least made it work, by simply running svn up once in interactive mode, getting prompted for the pw, from a command line. Now it looks like svn has the pw cached and ccrb seems to be working fine. Thanks much, Tim. On 11/13/08 8:37 AM, "Tim Walker" wrote: > Hi Guys, > > Very much a CruiseControlRB newbie so please bear with me. > > I installed CruiseControlRB on my MacOSX 10.4 w/o issue. I then > installed in on a Lepoard Mac server, same SVN repository, and the > installation worked the same. The "cruise add" created the project and > successfully checked out the latest version from the repository. Now, > however, the build fails with the error: BuilderError: svn can't get > password. > > I've tried "add" ing the project with ?username and ?password > properties and I can do an svn up from the "work" folder. > > Any thoughts? > > Many thanks, > > Tim > > _______________________________________________ > Cruisecontrolrb-users mailing list > Cruisecontrolrb-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From thewoolleyman at gmail.com Thu Nov 13 11:55:26 2008 From: thewoolleyman at gmail.com (Chad Woolley) Date: Thu, 13 Nov 2008 09:55:26 -0700 Subject: [Cruisecontrolrb-users] svn can't get user password on build, MacOS X 10.5 In-Reply-To: References: Message-ID: Yes, there are "bugs" in how the svn keychain stuff works on OSX. Dig around in the "Keychain Access" app and the ~/.subversion directory, and make sure that the credentials all look correct for the ID you are using. Delete them all and start over if you need to. Here's some notes I took on the steps to clean up this stuff for our CI boxes: http://gist.github.com/24496 On Thu, Nov 13, 2008 at 9:53 AM, Tim Walker wrote: > OK solved this, or at least made it work, by simply running svn up once > in interactive mode, getting prompted for the pw, from a command line. Now > it looks like svn has the pw cached and ccrb seems to be working fine. > Thanks much, Tim. > > > On 11/13/08 8:37 AM, "Tim Walker" wrote: > > Hi Guys, > > Very much a CruiseControlRB newbie so please bear with me. > > I installed CruiseControlRB on my MacOSX 10.4 w/o issue. I then > installed in on a Lepoard Mac server, same SVN repository, and the > installation worked the same. The "cruise add" created the project and > successfully checked out the latest version from the repository. Now, > however, the build fails with the error: BuilderError: svn can't get > password. > > I've tried "add" ing the project with ?username and ?password > properties and I can do an svn up from the "work" folder. > > Any thoughts? > > Many thanks, > > Tim > ------------------------------ > _______________________________________________ > Cruisecontrolrb-users mailing list > Cruisecontrolrb-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users > > > > _______________________________________________ > Cruisecontrolrb-users mailing list > Cruisecontrolrb-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mshiltonj at gmail.com Thu Nov 13 15:30:16 2008 From: mshiltonj at gmail.com (Steven Hilton) Date: Thu, 13 Nov 2008 15:30:16 -0500 Subject: [Cruisecontrolrb-users] Tests Pass, But Build Fails Message-ID: <8308260d0811131230k770846bfrce1899d713f55db9@mail.gmail.com> Greetings, I found an email thread on this list that concluded with the message below, about tests passing but the build failing. I'm having the same issue, same behavior, but have tracked it down yet. Was wondering if Jason Edwards, or anyone else, has resolved the issue. It's not CC-specific, apparently, but this is where others were seeing my problem. Thanks... ==== Bizarre... I went and added a task to my Rakefile, and I'm able to reproduce the problem, outside CC.rb (I got this from looking at the tasks/cc_build.rake file): task :cruise => :environment do Rake::Task['db:test:purge'].invoke Rake::Task['db:migrate'].invoke Rake::Task['test'].invoke end The other suggestion from Jeremy, to set the project.rake_task to 'default', allowed the build to pass, however, I'm sure that a database change would cause the build to fail, since the 'default' task doesn't BiTests Pass, But Build Failszarre... I went and added a task to my Rakefile, and I'm able to reproduce the problem, outside CC.rb (I got this from looking at the tasks/cc_build.rake file): task :cruise => :environment do Rake::Task['db:test:purge'].invoke Rake::Task['db:migrate'].invoke Rake::Task['test'].invoke end The other suggestion from Jeremy, to set the project.rake_task to 'default', allowed the build to pass, however, I'm sure that a database change would cause the build to fail, since the 'default' task doesn't run db:migrate. So it's not a cruisecontrol issue at all... I'll keep hacking on it, maybe find answer... Thanks, Jason run db:migrate. So it's not a cruisecontrol issue at all... I'll keep hacking on it, maybe find answer... Thanks, Jason === -- Steven Hilton "It is the duty of the patriot to protect his country from its government." -- Thomas Paine "Those who make peaceful revolution impossible will make violent revolution inevitable." -- John F. Kennedy "There is no heart so black as the black, black heart of the phony leper." -- Adrian Monk From jtanium at gmail.com Thu Nov 13 15:45:56 2008 From: jtanium at gmail.com (Jason Edwards) Date: Thu, 13 Nov 2008 13:45:56 -0700 Subject: [Cruisecontrolrb-users] Tests Pass, But Build Fails In-Reply-To: <8308260d0811131230k770846bfrce1899d713f55db9@mail.gmail.com> References: <8308260d0811131230k770846bfrce1899d713f55db9@mail.gmail.com> Message-ID: <2c6363db0811131245r32fccb74x3ec149cfd68e92b4@mail.gmail.com> I hacked for a while, but finally had to give up and get back to work. I added this to my Rakefile: def self.reconnect require 'active_record' unless defined? ActiveRecord configurations = ActiveRecord::Base.configurations if configurations and configurations.has_key?("test") and configurations["test"]["adapter"] == 'mysql' ActiveRecord::Base.establish_connection(:test) end end task :cruise => :environment do ENV['RAILS_ENV'] = 'test' Rake::Task['db:test:purge'].invoke reconnect Rake::Task['db:migrate'].invoke Rake::Task['custom:db:fixtures:load'].invoke Rake::Task['custom:test'].invoke end And haven't had any issues since. I feel I should add, in case there's any relavence, I have 'custom:db:fixtures:load' and 'custom:test' tasks because I had to change the way the fixtures were run. Specifically, I use what I call "programmatic" fixtures instead of the standard Rails (YAML) fixtures. That's part of the much larger discussion about some of the tediousness and awkwardness inherent with Rails fixtures. It's not a pretty solution, by any means, but it gets the job done. Sorry I can't provide any precise answer about what is wrong and what the solution is, Jason On Thu, Nov 13, 2008 at 1:30 PM, Steven Hilton wrote: > Greetings, > > I found an email thread on this list that concluded with the message below, > about tests passing but the build failing. > > I'm having the same issue, same behavior, but have tracked it down yet. > Was wondering if Jason Edwards, or anyone else, has resolved the issue. > It's not CC-specific, apparently, but this is where others were seeing my > problem. > > Thanks... > > ==== > Bizarre... > > I went and added a task to my Rakefile, and I'm able to reproduce the > problem, outside CC.rb (I got this from looking at the > tasks/cc_build.rake file): > > task :cruise => :environment do > Rake::Task['db:test:purge'].invoke > Rake::Task['db:migrate'].invoke > Rake::Task['test'].invoke > end > > The other suggestion from Jeremy, to set the project.rake_task to > 'default', allowed the build to pass, however, I'm sure that a > database change would cause the build to fail, since the 'default' > task doesn't BiTests Pass, But Build Failszarre... > > I went and added a task to my Rakefile, and I'm able to reproduce the > problem, outside CC.rb (I got this from looking at the > tasks/cc_build.rake file): > > task :cruise => :environment do > Rake::Task['db:test:purge'].invoke > Rake::Task['db:migrate'].invoke > Rake::Task['test'].invoke > end > > The other suggestion from Jeremy, to set the project.rake_task to > 'default', allowed the build to pass, however, I'm sure that a > database change would cause the build to fail, since the 'default' > task doesn't run db:migrate. > > So it's not a cruisecontrol issue at all... I'll keep hacking on it, > maybe find answer... > > Thanks, > > Jason > run db:migrate. > > So it's not a cruisecontrol issue at all... I'll keep hacking on it, > maybe find answer... > > Thanks, > > Jason > === > > > -- > Steven Hilton > > > "It is the duty of the patriot to protect > his country from its government." -- Thomas Paine > > "Those who make peaceful revolution impossible > will make violent revolution inevitable." -- John F. Kennedy > > "There is no heart so black > as the black, black heart > of the phony leper." -- Adrian Monk > _______________________________________________ > Cruisecontrolrb-users mailing list > Cruisecontrolrb-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users > From twalker at comverge.com Fri Nov 14 10:25:17 2008 From: twalker at comverge.com (Tim Walker) Date: Fri, 14 Nov 2008 08:25:17 -0700 Subject: [Cruisecontrolrb-users] svn can't get user password on build, MacOS X 10.5 In-Reply-To: Message-ID: Hi Chad, Thank you very much for this information. Tim On 11/13/08 9:55 AM, "Chad Woolley" wrote: > Yes, there are "bugs" in how the svn keychain stuff works on OSX. > > Dig around in the "Keychain Access" app and the ~/.subversion directory, and > make sure that the credentials all look correct for the ID you are using. > Delete them all and start over if you need to. > > Here's some notes I took on the steps to clean up this stuff for our CI boxes: > > http://gist.github.com/24496 > > > On Thu, Nov 13, 2008 at 9:53 AM, Tim Walker wrote: >> OK solved this, or at least made it work, by simply running svn up once in >> interactive mode, getting prompted for the pw, from a command line. Now it >> looks like svn has the pw cached and ccrb seems to be working fine. Thanks >> much, Tim. >> >> >> On 11/13/08 8:37 AM, "Tim Walker" wrote: >> >>> Hi Guys, >>> >>> Very much a CruiseControlRB newbie so please bear with me. >>> >>> I installed CruiseControlRB on my MacOSX 10.4 w/o issue. I then >>> installed in on a Lepoard Mac server, same SVN repository, and the >>> installation worked the same. The "cruise add" created the project and >>> successfully checked out the latest version from the repository. Now, >>> however, the build fails with the error: BuilderError: svn can't get >>> password. >>> >>> I've tried "add" ing the project with ?username and ?password >>> properties and I can do an svn up from the "work" folder. >>> >>> Any thoughts? >>> >>> Many thanks, >>> >>> Tim >>> >>> _______________________________________________ >>> Cruisecontrolrb-users mailing list >>> Cruisecontrolrb-users at rubyforge.org >>> http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users >> >> >> _______________________________________________ >> Cruisecontrolrb-users mailing list >> Cruisecontrolrb-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users >> > > > > _______________________________________________ > Cruisecontrolrb-users mailing list > Cruisecontrolrb-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From thewoolleyman at gmail.com Fri Nov 28 17:02:00 2008 From: thewoolleyman at gmail.com (Chad Woolley) Date: Fri, 28 Nov 2008 15:02:00 -0700 Subject: [Cruisecontrolrb-users] When svn returns an error... In-Reply-To: References: <405393A2-D407-48B8-BCE3-332BFF53A559@bitwrangler.com> Message-ID: On Fri, Sep 26, 2008 at 10:54 AM, Chad Woolley wrote: > > I just had this problem, and opened a bug: > > > http://cruisecontrolrb.lighthouseapp.com/projects/9150/tickets/212-builder-failure-if-svn-log-fails-with-credentials-error > > Not sure the right way to proceed - I just discussed it the Jeremy > Lighthouse and he had some thoughts. It boils down to the non-zero return > code from failed auth not getting handled correctly. It should not go on > and attempt to parse the command results. > > This is fixed here: http://github.com/thewoolleyman/cruisecontrol.rb/commit/0a4694b321560755874ba16438a630379bd0fd21 Can someone commit? Thanks, -- Chad -------------- next part -------------- An HTML attachment was scrubbed... URL: