Storing 3rd party library into source control with Continuous Integration usage - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T20:54:50Zhttp://stackoverflow.com/feeds/question/913077http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/913077/storing-3rd-party-library-into-source-control-with-continuous-integration-usage2Storing 3rd party library into source control with Continuous Integration usageShaChris232009-05-26T22:25:01Z2009-10-22T16:56:07Z
<p>I just committed a very large 3rd party library (Boost) into our source control. I set it up with its own repository. I tagged its version so that other projects could svn:externals this specific version.</p>
<p>This is perfectly fine, until I realize that my Continuous Integration (CI) server will do a complete check out everytime I checked-in some code. (Obviously, I intentionally set up my CI server like that in the beginning). This could lead to a very long checkout time on CI server end.</p>
<p>So the question is: is this a good thing? Can someone suggest potentially a better way to handle this pattern?</p>
<p><strong>EDIT:</strong> I'm using TeamCity CI server.</p>
http://stackoverflow.com/questions/913077/storing-3rd-party-library-into-source-control-with-continuous-integration-usage/913147#9131473Answer by sanxiyn for Storing 3rd party library into source control with Continuous Integration usagesanxiyn2009-05-26T22:41:30Z2009-05-26T22:41:30Z<p>Some possibilities come to mind:</p>
<ol>
<li>Change CI to update incrementally.</li>
<li>Avoid svn:externals, instead symbolic link the checkout during the build.</li>
</ol>
http://stackoverflow.com/questions/913077/storing-3rd-party-library-into-source-control-with-continuous-integration-usage/968086#9680866Answer by Richard Cirerol for Storing 3rd party library into source control with Continuous Integration usageRichard Cirerol2009-06-09T04:03:26Z2009-10-22T16:56:07Z<p>TeamCity, by default, is configured to cache the exported sources (Checkout mode: Automatically on server). This means that the first build may take some time, but subsequent builds will be significantly faster as it only loads the changed files. Automatic clean checkouts will only happen in certain circumstances.</p>
<p>If you have checked in the entire 3rd party library, including documentation and source, you may want to create a checkout rule that filters out those extraneous files so that you are only left with the binaries you need to compile your solution (assuming you have checked in compiled binaries).</p>
<p>TeamCity allows multiple VCS roots in each build configuration, so it may be easier for you to exclude externals in your main VCS root (which is the default), then add another VCS root pointed to your other repository, with a checkout rule to put the Boost precompiled libraries in the expected directory. </p>
<p>For more information on clean checkouts and checkout rules, see:</p>
<p><a href="http://www.jetbrains.net/confluence/display/TCD4/Clean+Checkout#CleanCheckout-sourcescache" rel="nofollow">http://www.jetbrains.net/confluence/display/TCD4/Clean+Checkout#CleanCheckout-sourcescache</a>
<a href="http://www.jetbrains.net/confluence/display/TCD4/VCS+Checkout+Rules" rel="nofollow">http://www.jetbrains.net/confluence/display/TCD4/VCS+Checkout+Rules</a></p>