views:

15

answers:

1

How do I setup visualsvn server to trigger teamcity to build a specific project after someone commits to it while obeying the set quiet period?

Right now I am using this in the post commit hook of visual svn server:

wget http://&lt;user name>:<user password>@<server address>/httpAuth/action.html?add2Queue=<build type Id>

The problem with this is I need the build type ID to change depending on what project was committed to and the other problem is that it starts the build right away and ignores my set quiet period of 2 minutes.

A: 

Found the answer. Use the VCSupdate plugin for teamcity and use wget on thevcsupdate url for the vcs root.

MikeU