Storing 3rd party library into source control with Continuous Integration usage - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T20:54:50Z http://stackoverflow.com/feeds/question/913077 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/913077/storing-3rd-party-library-into-source-control-with-continuous-integration-usage 2 Storing 3rd party library into source control with Continuous Integration usage ShaChris23 2009-05-26T22:25:01Z 2009-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#913147 3 Answer by sanxiyn for Storing 3rd party library into source control with Continuous Integration usage sanxiyn 2009-05-26T22:41:30Z 2009-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#968086 6 Answer by Richard Cirerol for Storing 3rd party library into source control with Continuous Integration usage Richard Cirerol 2009-06-09T04:03:26Z 2009-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>