Reputation: 3899
My team and I are hosting our project's repository on Google Code. We would like to have a Continuous Integration setup so that when modifications are made, it tries to build the project and run the tests to make sure that everything's okay. From what I hear, a solution to this is to have an external machine listen to the repository for changes, then grab the updated files and try to build it, etc.
My question is how to set up this scenario with a Google Code repository.
Upvotes: 2
Views: 739
Reputation: 33278
If you use something like TeamCity, you can setup your source control root to point to the SVN repository hosted on GoogleCode.
This is usually something like http://yourproject.googlecode.com/svn/trunk (assuming you created a trunk for you main line of code).
For example, our link for one of our open source projects is: http://masstransit.googlecode.com/svn/trunk/
No authentication is needed, and you setup the VCS root as part of creating a project in TeamCity.
Upvotes: 2