I have 2 different build configurations in team-city. Each has it's own build chain.
The first just builds the product. The second also builds the product but also builds and run unit tests. We are invoking them manually depending on our needs.
Now the question is it possible to have single entry point that will do perform conditional execution via some parameter/argument. ( I click on button, provide option to have simple build or build with unit tests )
I am thinking about having "wrapper" shell-script configuration, that will execute the chain needed via REST depending on given parameter. However this have obvious disadvantage of broken integrity (you can't really follow what is happening)
Any other solutions welcome!