"Thorough", tutorial on setting up Jetbrain's TeamCity CI server - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T23:02:02Z http://stackoverflow.com/feeds/question/361386 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/361386/thorough-tutorial-on-setting-up-jetbrains-teamcity-ci-server 6 "Thorough", tutorial on setting up Jetbrain's TeamCity CI server Agile Noob 2008-12-11T23:16:00Z 2008-12-20T20:51:15Z <p>Does anyone know where I can find a good tutorial to walk me through how to setup TeamCity CI server? I am new to unit testing and the agile philosophy of development so I could use some help getting my feet wet. I'm working with Asp.NET code using NUnit for my unit tests and would prefer a windows environment for the TeamCity server. Please note that I have no idea how to configure NANT for the build or anything else needed to have continuous builds. I just have unit tested .NET code.</p> http://stackoverflow.com/questions/361386/thorough-tutorial-on-setting-up-jetbrains-teamcity-ci-server/363098#363098 3 Answer by Scott Cowan for "Thorough", tutorial on setting up Jetbrain's TeamCity CI server Scott Cowan 2008-12-12T15:36:53Z 2008-12-12T15:36:53Z <ol> <li>get nant to compile your code and run tests </li> <li>download and install teamcity </li> <li>setup your test report as a build artifact in the general settings</li> </ol> <p>nunit is a good place to start because it works well with teamcity.</p> <p>teamcity is really nice to setup, post back it you have any problems with it</p> <p>here's some links to help</p> <ul> <li><a href="http://blog.jpboodhoo.com/NAntStarterSeries.aspx" rel="nofollow">JPBoodhoo NAnt Starter Series</a></li> <li><a href="http://nant.sourceforge.net/release/latest/help/introduction/" rel="nofollow">NAnt intro</a></li> </ul> http://stackoverflow.com/questions/361386/thorough-tutorial-on-setting-up-jetbrains-teamcity-ci-server/364921#364921 4 Answer by Ben Griswold for "Thorough", tutorial on setting up Jetbrain's TeamCity CI server Ben Griswold 2008-12-13T06:19:07Z 2008-12-13T06:19:07Z <p>The folks at DimeCasts.net have a nice <a href="http://www.dimecasts.net/Casts/ByTag/Team%20City" rel="nofollow">TeamCity tutorial</a>. </p> http://stackoverflow.com/questions/361386/thorough-tutorial-on-setting-up-jetbrains-teamcity-ci-server/383712#383712 1 Answer by Todd Brooks for "Thorough", tutorial on setting up Jetbrain's TeamCity CI server Todd Brooks 2008-12-20T20:38:01Z 2008-12-20T20:38:01Z <p>I found an article at "Pete W.'s Idea Book" blog that was invaluable to setting up TeamCity and Visual SVN for me. <a href="http://www.acceptedeclectic.com/2008/05/visualsvn-teamcity-nant-sql-server.html" rel="nofollow">VisualSVN + TeamCity + NAnt + SQL Server</a></p> <p>Even talks about getting SQL Server 2005 working with TeamCity (although, I believe it works out of the box with TeamCity 4.x). Integration with NAnt helped, too.</p> <p>This is a good introduction and tutorial article.</p> http://stackoverflow.com/questions/361386/thorough-tutorial-on-setting-up-jetbrains-teamcity-ci-server/383727#383727 2 Answer by Cory Foy for "Thorough", tutorial on setting up Jetbrain's TeamCity CI server Cory Foy 2008-12-20T20:51:15Z 2008-12-20T20:51:15Z <p>Note that TeamCity can also use MSBuild, which can run Visual Studio .sln files. That's a great place to start when getting your feet wet - just have the build server run your build script that uses MSBuild to call your .sln file.</p> <p>We check in our build script in a Build directory, and we are sure to use relative paths, so anyone can run the build. We have around 140 projects (both managed and unmanaged) plus a host of other activities (auto-generation of classes and objects from metadata for example). </p> <p>Also, when setting up a CI server for the first time, prepare to become very familiar with your build. For the first several weeks, when something breaks people may blame it on the CI server instead of checking in broken code. Understanding your build and keeping it as simple as possible will help the whole team focus on integrating better.</p>