<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: How to automate your iPhone app builds with Hudson</title> <atom:link href="http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson/feed" rel="self" type="application/rss+xml" /><link>http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson</link> <description>Making broken software somewhat less broken</description> <lastBuildDate>Tue, 01 May 2012 08:24:07 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>By: Michael Nachbaur</title><link>http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson/comment-page-1#comment-671</link> <dc:creator>Michael Nachbaur</dc:creator> <pubDate>Thu, 19 Aug 2010 01:15:17 +0000</pubDate> <guid
isPermaLink="false">http://nachbaur.com/?p=139#comment-671</guid> <description>Hudson will detect a failure when the build script exits with a status code of anything but &quot;0&quot;.  So the &quot;&#124;&#124; failed&quot; function call logs an error message and spits out an exit code
So if you want your Rake script to fail, you have to exit from that with a status code too.</description> <content:encoded><![CDATA[<p>Hudson will detect a failure when the build script exits with a status code of anything but &#8220;0&#8243;.  So the &#8220;|| failed&#8221; function call logs an error message and spits out an exit code</p><p>So if you want your Rake script to fail, you have to exit from that with a status code too.</p> ]]></content:encoded> </item> <item><title>By: Chris</title><link>http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson/comment-page-1#comment-669</link> <dc:creator>Chris</dc:creator> <pubDate>Thu, 12 Aug 2010 20:17:42 +0000</pubDate> <guid
isPermaLink="false">http://nachbaur.com/?p=139#comment-669</guid> <description>I have a question about the following line in your build script:
xcodebuild -configuration $config -sdk $sdk &#124;&#124; failed build;
How exactly does the last part &#039;&#124;&#124; failed build&#039; work and why are you using it?  I basically ask, because I have a rake build script for my iphone project and have configured a job in Hudson to run this script.  However, if I break my build by putting in a bad line of code that doesn&#039;t compile, I see in Hudson&#039;s console output that there was a build failure spit out by Rake, but Hudson never detects it and says that the build was successful.  Thoughts?
Any ideas on how ot fix this would be greatly appreciated.</description> <content:encoded><![CDATA[<p>I have a question about the following line in your build script:</p><p>xcodebuild -configuration $config -sdk $sdk || failed build;</p><p>How exactly does the last part &#8216;|| failed build&#8217; work and why are you using it?  I basically ask, because I have a rake build script for my iphone project and have configured a job in Hudson to run this script.  However, if I break my build by putting in a bad line of code that doesn&#8217;t compile, I see in Hudson&#8217;s console output that there was a build failure spit out by Rake, but Hudson never detects it and says that the build was successful.  Thoughts?</p><p>Any ideas on how ot fix this would be greatly appreciated.</p> ]]></content:encoded> </item> <item><title>By: Mike</title><link>http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson/comment-page-1#comment-668</link> <dc:creator>Mike</dc:creator> <pubDate>Thu, 22 Jul 2010 14:50:27 +0000</pubDate> <guid
isPermaLink="false">http://nachbaur.com/?p=139#comment-668</guid> <description>I am unable to get the macbook setup as a slave, I keep getting connection refused.  Any thoughts?
07/22/10 08:53:21] [SSH] Opening SSH connection to 10.1.6.248:22.
java.io.IOException: There was a problem while connecting to 10.1.6.248:22
at com.trilead.ssh2.Connection.connect(Connection.java:755)
at com.trilead.ssh2.Connection.connect(Connection.java:546)
at hudson.plugins.sshslaves.SSHLauncher.openConnection(SSHLauncher.java:422)
at hudson.plugins.sshslaves.SSHLauncher.launch(SSHLauncher.java:154)
at hudson.slaves.SlaveComputer$1.call(SlaveComputer.java:180)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.net.ConnectException: Connection refused
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
at java.net.Socket.connect(Socket.java:525)
at com.trilead.ssh2.transport.TransportManager.establishConnection(TransportManager.java:342)
at com.trilead.ssh2.transport.TransportManager.initialize(TransportManager.java:450)
at com.trilead.ssh2.Connection.connect(Connection.java:699)
... 9 more
[07/22/10 08:53:21] [SSH] Connection closed.</description> <content:encoded><![CDATA[<p>I am unable to get the macbook setup as a slave, I keep getting connection refused.  Any thoughts?</p><p>07/22/10 08:53:21] [SSH] Opening SSH connection to 10.1.6.248:22.<br
/> java.io.IOException: There was a problem while connecting to 10.1.6.248:22<br
/> at com.trilead.ssh2.Connection.connect(Connection.java:755)<br
/> at com.trilead.ssh2.Connection.connect(Connection.java:546)<br
/> at hudson.plugins.sshslaves.SSHLauncher.openConnection(SSHLauncher.java:422)<br
/> at hudson.plugins.sshslaves.SSHLauncher.launch(SSHLauncher.java:154)<br
/> at hudson.slaves.SlaveComputer$1.call(SlaveComputer.java:180)<br
/> at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)<br
/> at java.util.concurrent.FutureTask.run(FutureTask.java:138)<br
/> at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)<br
/> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)<br
/> at java.lang.Thread.run(Thread.java:619)<br
/> Caused by: java.net.ConnectException: Connection refused<br
/> at java.net.PlainSocketImpl.socketConnect(Native Method)<br
/> at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)<br
/> at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)<br
/> at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)<br
/> at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)<br
/> at java.net.Socket.connect(Socket.java:525)<br
/> at com.trilead.ssh2.transport.TransportManager.establishConnection(TransportManager.java:342)<br
/> at com.trilead.ssh2.transport.TransportManager.initialize(TransportManager.java:450)<br
/> at com.trilead.ssh2.Connection.connect(Connection.java:699)<br
/> &#8230; 9 more<br
/> [07/22/10 08:53:21] [SSH] Connection closed.</p> ]]></content:encoded> </item> <item><title>By: hudson &#124; designoMatt</title><link>http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson/comment-page-1#comment-666</link> <dc:creator>hudson &#124; designoMatt</dc:creator> <pubDate>Wed, 14 Jul 2010 04:40:58 +0000</pubDate> <guid
isPermaLink="false">http://nachbaur.com/?p=139#comment-666</guid> <description>[...] great article on automating your build processes with hudson. [...]</description> <content:encoded><![CDATA[<p>[...] great article on automating your build processes with hudson. [...]</p> ]]></content:encoded> </item> <item><title>By: James</title><link>http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson/comment-page-1#comment-664</link> <dc:creator>James</dc:creator> <pubDate>Thu, 08 Jul 2010 23:01:01 +0000</pubDate> <guid
isPermaLink="false">http://nachbaur.com/?p=139#comment-664</guid> <description>I used this with TeamCity and it works like a charm(with a few changes of course).  Thank for the sharing it.</description> <content:encoded><![CDATA[<p>I used this with TeamCity and it works like a charm(with a few changes of course).  Thank for the sharing it.</p> ]]></content:encoded> </item> <item><title>By: Building iPhone apps with Hudson, Part 2 &#124; Web Developer's Life in Beta</title><link>http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson/comment-page-1#comment-658</link> <dc:creator>Building iPhone apps with Hudson, Part 2 &#124; Web Developer's Life in Beta</dc:creator> <pubDate>Fri, 18 Jun 2010 23:50:02 +0000</pubDate> <guid
isPermaLink="false">http://nachbaur.com/?p=139#comment-658</guid> <description>[...] already posted before on how to set up Hudson to compile and build iPhone applications, but I just had a &#8220;OMG I &lt;3 Hudson!&#8221; moment just now, and felt I had to share [...]</description> <content:encoded><![CDATA[<p>[...] already posted before on how to set up Hudson to compile and build iPhone applications, but I just had a &#8220;OMG I &lt;3 Hudson!&#8221; moment just now, and felt I had to share [...]</p> ]]></content:encoded> </item> <item><title>By: Continuous Integration with Hudson</title><link>http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson/comment-page-1#comment-656</link> <dc:creator>Continuous Integration with Hudson</dc:creator> <pubDate>Wed, 16 Jun 2010 12:59:33 +0000</pubDate> <guid
isPermaLink="false">http://nachbaur.com/?p=139#comment-656</guid> <description>[...] How to automate your iPhone app builds with Hudson by Michael Nachbaur. [...]</description> <content:encoded><![CDATA[<p>[...] How to automate your iPhone app builds with Hudson by Michael Nachbaur. [...]</p> ]]></content:encoded> </item> <item><title>By: Cocoa, Hudson CI and Xcode - go green &#124; manicwave.com</title><link>http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson/comment-page-1#comment-627</link> <dc:creator>Cocoa, Hudson CI and Xcode - go green &#124; manicwave.com</dc:creator> <pubDate>Tue, 02 Mar 2010 04:32:56 +0000</pubDate> <guid
isPermaLink="false">http://nachbaur.com/?p=139#comment-627</guid> <description>[...] up more than a few times getting my apps to build in Hudson.  There are more than a few pages on the web that illustrate Cocoa/Hudson [...]</description> <content:encoded><![CDATA[<p>[...] up more than a few times getting my apps to build in Hudson.  There are more than a few pages on the web that illustrate Cocoa/Hudson [...]</p> ]]></content:encoded> </item> <item><title>By: Marcus</title><link>http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson/comment-page-1#comment-620</link> <dc:creator>Marcus</dc:creator> <pubDate>Mon, 11 Jan 2010 20:47:56 +0000</pubDate> <guid
isPermaLink="false">http://nachbaur.com/?p=139#comment-620</guid> <description>Excellent article.    I&#039;ve made a few adjustments for my setup but it works!    The Certs are the key.   Hudson ROCKS BTW!!</description> <content:encoded><![CDATA[<p>Excellent article.    I&#8217;ve made a few adjustments for my setup but it works!    The Certs are the key.   Hudson ROCKS BTW!!</p> ]]></content:encoded> </item> <item><title>By: Marc</title><link>http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson/comment-page-1#comment-615</link> <dc:creator>Marc</dc:creator> <pubDate>Wed, 16 Dec 2009 13:09:54 +0000</pubDate> <guid
isPermaLink="false">http://nachbaur.com/?p=139#comment-615</guid> <description>interesting article, I made a similar general-purpose build script here in this blogpost:
http://iphonedev.makerlab.org/2009/12/packaging-script-for-iphone-ad-hoc-distribution-builds/
good idea to do a clean and a  &#124;&#124; failed in the build process!
you should add iTunesArtwork to your build process as well as make an .ipa archive for easier installation!</description> <content:encoded><![CDATA[<p>interesting article, I made a similar general-purpose build script here in this blogpost:<br
/> <a
href="http://iphonedev.makerlab.org/2009/12/packaging-script-for-iphone-ad-hoc-distribution-builds/" >http://iphonedev.makerlab.org/2009/12/packaging-script-for-iphone-ad-hoc-distribution-builds/</a></p><p>good idea to do a clean and a  || failed in the build process!</p><p>you should add iTunesArtwork to your build process as well as make an .ipa archive for easier installation!</p> ]]></content:encoded> </item> </channel> </rss>
