TeamCity deletes files on build - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T18:35:03Zhttp://stackoverflow.com/feeds/question/942267http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/942267/teamcity-deletes-files-on-build1TeamCity deletes files on buildZooking2009-06-02T22:34:44Z2009-06-05T10:26:28Z
<p>Hello,</p>
<p>I am a newbie to TeamCity and Continuous Integration. I have followed <a href="http://elegantcode.com/2009/05/04/implementing-teamcity-for-net-projects-part-1-just-build-it-a-simple-build-configuration/" rel="nofollow">this</a> very nice guide to set everything up and it all seemed to work at first.</p>
<p>TC could check out the files from SVN and it could build them with no problems. However I discovered that the 'Checkout directory'-setting was wrong, it pointed one folder above where it should be hence adding all new files from SVN in the wrong place but still building on the old ones. After correcting this the problems started.</p>
<p>Now every time TC does a build it cleares all files in the 'Checkout directory' the problem with this is that not all files needed are managed by SVN and they are deleted forever. Since not all necessary files are there the build fails.</p>
<p>What should I do to make TC keep my files? </p>
<p>Settings from TC if it could help:</p>
<blockquote>
<p>General settings edit »</p>
<p>Name: Mavia Build</p>
<p>Description: none</p>
<p>Build number format: {0}, next build number: #8</p>
<p>Artifact paths: none specifed</p>
<p>Fail build if:</p>
<p>process exit code is not zero: ON</p>
<p>at least one test failed: ON</p>
<p>an error message is logged by build runner: OFF</p>
<p>it runs longer than: no limit</p>
<p>out of memory or crash is detected: ON</p>
<p>Build options:</p>
<p>hanging builds detection: ON</p>
<p>status widget: OFF</p>
<p>maximum number of simultaneously running builds: unlimited</p>
<p>Version control settings edit »</p>
<p>VCS checkout mode: Automatically on server</p>
<p>Checkout directory: C:\Inetpub\wwwroot\mavia_sip</p>
<p>Clean all files before build: OFF</p>
<p>VCS labeling: disabled</p>
<p>Attached VCS roots:</p>
<p>Name Checkout rules Set label</p>
<p>mavia_sip svn not specified NO</p>
<p>Runner: sln2008 edit »</p>
<p>Type of runner: sln2008 (Runner for Microsoft Visual Studio 2008 solution files)</p>
<p>Solution file path: mavia_sip\WebSite\mavia_sip.sln</p>
<p>Working directory: same as checkout directory</p>
<p>Targets: Rebuild</p>
<p>Configuration: Debug</p>
<p>Solution Platform: default</p>
<p>NUnit Run platform: auto(MSIL)</p>
<p>NUnit runner: NUnit 2.2.10</p>
<p>Run tests from: none specified</p>
<p>Do not run tests from: none specified</p>
<p>NUnit categories include: none specified</p>
<p>NUnit categories exclude: none specified</p>
<p>Reduce test failure feedback time: OFF</p>
<p>MSTest: disabled</p>
<p>XML report processing: disabled</p>
<p>Build triggering edit »</p>
<p>Build configuration is paused (triggering disabled).</p>
<p>Trigger build by vcs check-in: ON</p>
<p>Quiet period: default, 60 seconds</p>
<p>Start new build if last build is failed: OFF</p>
<p>Triggering by time: not configured</p>
<p>This configuration depends on: not configured</p>
<p>Dependencies edit »</p>
<p>Snapshot Dependencies:</p>
<p>There are no snapshot dependencies.</p>
<p>Artifact dependencies:</p>
<p>There are no artifact dependencies.</p>
<p>Properties and environment variables edit »</p>
<p>System properties: none defined</p>
<p>Environment variables: none defined</p>
<p>Agent requirements edit »</p>
<p>Requirements for system properties: none defined</p>
<p>Requirements for environment variables: none defined</p>
</blockquote>
http://stackoverflow.com/questions/942267/teamcity-deletes-files-on-build/942291#9422911Answer by ripper234 for TeamCity deletes files on buildripper2342009-06-02T22:42:49Z2009-06-02T22:42:49Z<p>The checkout directory should not contain any files you care about!</p>
<p>You should definitely be able to do "clean builds", and have TeamCity delete everything in the folder. </p>
http://stackoverflow.com/questions/942267/teamcity-deletes-files-on-build/953092#9530923Answer by Zooking for TeamCity deletes files on buildZooking2009-06-04T21:05:14Z2009-06-05T10:26:28Z<p>Ok this is how I did it:</p>
<p>First I let TC check out and build the project in a separate folder on the site. The external dll's that were needed were moved from the 'bin'-folder to a separate folder and added to subversion (also updating the referenses in Visual Studio).</p>
<p>Now TC could build the project with no hassle.</p>
<p>Second I created a Post Build Script in Visual Studio like this:</p>
<pre><code>xcopy "C:\TeamCityBuild\mavia_sip\WebSite\*" "C:\Inetpub\wwwroot\mavia_sip\WebSite\" /C /R /Y /E
if errorlevel 1 exit 0
</code></pre>
<p>The error handling is only needed to avoid script errors when someone builds the project on a environment without the correct folder structure.</p>
<p>So far everyting is working great!</p>