views:

67

answers:

2

Hi,

I would like to run several Team-City build projects with the same SVN-revision. Is this possible?

A: 

Sure, create several build configurations, and set them to trigger on SVN revision changes to a shared repository root.

You can also have one build trigger another.

sylvanaar
When one build triggers another, do both use the same revision?
crauscher
Thats really up to you...if you want them to then yes they can
sylvanaar
+1  A: 

Take a look at snapshot dependencies. If build configuration A has a snapshot dependency on B then when A is triggered B will be triggered too and both will run on the same sources.

If A and B have same VCS roots then builds of these configurations will be built on the same revision. If A and B have different VCS roots, then TeamCity will take sources on the same moment of time.

Pavel Sher