Personal build with dependencies

I started using TeamCity's personal builds through the new Git remote launch feature in TeamCity 6.5. Performing a single assembly works fine; I have a project that compiles from the source, and I gave it a remote remote start trigger.

However, it appears that TeamCity only launches one project that uses a remote remote start trigger. I have several unit test projects configured in a chain with Finish Build triggers, and none of them start. In addition, if I try to run a custom assembly from one of these unit test projects, I cannot use artifacts from my personal assembly: I can only select artifacts from one of the “official” collections.

Can I get TeamCity personal assemblies for working with assembly chains?

+3
source share
2 answers

With the settings that you have (depending on snapshots and build triggers), you can achieve chain building by presenting your personal changes in the lines you want to run. For example, if you have projects A and B, where B depends on A, a remote assembly starts with projects B, and A will be launched first, and B will be added to the queue. Both of these builds will have your personal changes.

If you use the TeamCity Visual Studio plugin, you can choose which assemblies you want to send to your changes, and you just need to mark the field for B instead of A.

The finished assembly trigger will not start, but the assembly chain means that A must be created first.

- http://confluence.jetbrains.net/display/TCD7/Build+Chain

( TeamCity 6.5, 7 , )

+2

, Finish Build, "Snapshot dependencies" TeamCity. , , .

TeamCity .

+1

All Articles