<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.eiffelroom.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>eiffelroom - Using an automatic build and testing system - Comments</title>
 <link>http://www.eiffelroom.com/blog/patrickr/using_an_automatic_build_and_testing_system</link>
 <description>Comments for &quot;Using an automatic build and testing system&quot;</description>
 <language>en</language>
<item>
 <title>Project Automation Book</title>
 <link>http://www.eiffelroom.com/blog/patrickr/using_an_automatic_build_and_testing_system#comment-292</link>
 <description>&lt;p&gt;This book ( &lt;a href=&quot;http://www.pragmaticprogrammer.com/sk/auto/&quot;&gt;http://www.pragmaticprogrammer.com/sk/auto/&lt;/a&gt; ) talk about this topic and show good examples.&lt;/p&gt;

You can see Buildix ( &lt;a href=&quot;http://buildix.thoughtworks.com/&quot;&gt;http://buildix.thoughtworks.com/&lt;/a&gt; ) an Agile development platform with  &lt;p&gt;1) Subversion for Source Control&lt;/p&gt;

&lt;p&gt;2) Trac for a Wiki, Bug-Tracker and general Project Management&lt;/p&gt;

&lt;p&gt;3) Cruise Control for Continuous Integration&lt;/p&gt;

</description>
 <pubDate>Tue, 17 Jul 2007 09:54:00 -0700</pubDate>
 <dc:creator>jvelilla</dc:creator>
 <guid isPermaLink="false">comment 292 at http://www.eiffelroom.com</guid>
</item>
<item>
 <title>I basically just followed</title>
 <link>http://www.eiffelroom.com/blog/patrickr/using_an_automatic_build_and_testing_system#comment-291</link>
 <description>&lt;p&gt;I basically just followed the getting started page from cruisecontrol&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://cruisecontrol.sourceforge.net/gettingstartedsourcedist.html&quot;&gt;http://cruisecontrol.sourceforge.net/gettingstartedsourcedist.html&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Instead of ant files I simply used bash scripts, our configuration can be found under&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://svn.origo.ethz.ch/origo/core/trunk/examples/cruisecontrol/config.xml&quot;&gt;https://svn.origo.ethz.ch/origo/core/trunk/examples/cruisecontrol/config.xml&lt;/a&gt;&lt;/p&gt;

</description>
 <pubDate>Mon, 16 Jul 2007 07:44:20 -0700</pubDate>
 <dc:creator>patrickr</dc:creator>
 <guid isPermaLink="false">comment 291 at http://www.eiffelroom.com</guid>
</item>
<item>
 <title>More details</title>
 <link>http://www.eiffelroom.com/blog/patrickr/using_an_automatic_build_and_testing_system#comment-290</link>
 <description>&lt;p&gt;Do you have a page that goes more in the details of how one would setup such an environment?&lt;/p&gt;

&lt;p&gt;Thanks, Manu&lt;/p&gt;

</description>
 <pubDate>Sun, 15 Jul 2007 16:21:03 -0700</pubDate>
 <dc:creator>manus_eiffel</dc:creator>
 <guid isPermaLink="false">comment 290 at http://www.eiffelroom.com</guid>
</item>
<item>
 <title>This setup is a great advantage</title>
 <link>http://www.eiffelroom.com/blog/patrickr/using_an_automatic_build_and_testing_system#comment-288</link>
 <description>&lt;p&gt;I&#039;d just like to add here that this setup proves to be extremely useful in the development of Origo. We detect regressions almost instantly and getting an email after a successful build and test of Origo is always cool. The system even let&#039;s us know how long it took to do a clean build - at the moment a bit more than twenty minutes.&lt;/p&gt;

&lt;p&gt;A similar approach should in my opinion be used for every bigger project.&lt;/p&gt;

</description>
 <pubDate>Fri, 13 Jul 2007 04:54:29 -0700</pubDate>
 <dc:creator>bayt</dc:creator>
 <guid isPermaLink="false">comment 288 at http://www.eiffelroom.com</guid>
</item>
<item>
 <title>Using an automatic build and testing system</title>
 <link>http://www.eiffelroom.com/blog/patrickr/using_an_automatic_build_and_testing_system</link>
 <description>&lt;p&gt;A couple of days ago we setup an automatic build and testing system for our development of &lt;a href=&quot;http://origo.ethz.ch&quot;&gt;Origo&lt;/a&gt;. We used &lt;a href=&quot;http://cruisecontrol.sourceforge.net&quot;&gt;CruiseControl&lt;/a&gt; as the base of the system. CruiseControl does check if there were any changes to the source code and launches a build.&lt;/p&gt;

&lt;p&gt;For the build we wrote some small bash scripts that first get the most up to date source of our dependencies and our code. After this, everything is built and at the end our test cases are run. Our testing consists of starting several applications and then executing xml rpc requests on our API interface. To do the testing we choose python as there exists a python unit test framework that generates an xml output which is compatible to the xml output of junit which cruisecontrol can directly parse.&lt;/p&gt;

&lt;p&gt;The result of the test runs is then published on a website and mailed to the developers.&lt;/p&gt;

&lt;p&gt;Our dependencies are at the moment: &lt;ul&gt;
    &lt;li&gt;EiffelThread&lt;/li&gt;
    &lt;li&gt;EiffelStore&lt;/li&gt;
    &lt;li&gt;Gobo&lt;/li&gt;
    &lt;li&gt;Eposix&lt;/li&gt;
    &lt;li&gt;Goanna&lt;/li&gt;
    &lt;li&gt;Log4e&lt;/li&gt;
    &lt;li&gt;Thread Extension&lt;/li&gt;
    &lt;li&gt;Vampeer&lt;/li&gt;
&lt;/ul&gt;

&lt;/p&gt;

&lt;p&gt;So this might even help to detect problems in those libraries as we use the trunk version of the libraries at the moment.&lt;/p&gt;

&lt;p&gt;So far we are very happy with our setup and in the coming days we&#039;ll add more test cases.&lt;/p&gt;

</description>
 <comments>http://www.eiffelroom.com/blog/patrickr/using_an_automatic_build_and_testing_system#comments</comments>
 <category domain="http://www.eiffelroom.com/tag/gobo">Gobo</category>
 <category domain="http://www.eiffelroom.com/tag/bash">bash</category>
 <category domain="http://www.eiffelroom.com/tag/cruisecontrol">cruisecontrol</category>
 <category domain="http://www.eiffelroom.com/tag/eiffelstore">eiffelstore</category>
 <category domain="http://www.eiffelroom.com/tag/eiffelthread">eiffelthread</category>
 <category domain="http://www.eiffelroom.com/tag/goanna">goanna</category>
 <category domain="http://www.eiffelroom.com/tag/log4e">log4e</category>
 <category domain="http://www.eiffelroom.com/tag/origo">origo</category>
 <category domain="http://www.eiffelroom.com/tag/python">python</category>
 <category domain="http://www.eiffelroom.com/tag/testing">testing</category>
 <category domain="http://www.eiffelroom.com/tag/thread_extension">thread_extension</category>
 <category domain="http://www.eiffelroom.com/tag/vampper">vampper</category>
 <pubDate>Thu, 12 Jul 2007 15:56:39 -0700</pubDate>
 <dc:creator>patrickr</dc:creator>
 <guid isPermaLink="false">198 at http://www.eiffelroom.com</guid>
</item>
</channel>
</rss>
