There's a TeamCity build chain consisting of several builds such that some of them need to run in parallel:
- Build 1 runs
- Then builds 2.1 and 2.2 run in parallel
- Then build 3 runs
- Then builds 4.1 and 4.2 run
this is quite easy to setup. It so happens that 2.1 uses the same configuration parameters as 4.1 and 2.2 uses the same parameters as 4.2 so it's be good to somehow specify those once such that if 2.1 parameters are changed then 4.1 parameters are also changed consistently.
I don't see a place where configuration parameters can be set other than at build level. Can they be set elsewhere and reused across several builds of a build chain?