I have a TeamCity 8.0.3 project with multiple configs inside which have a common parameter (defined as a project parameter) : targetServerIP
. One of these configs is a "1 click deployment" which starts others configs by using snapshots dependencies. I've set the parameter as "prompt" so the IP is asked on each run of any configs, this is what
Problem :
Individually it works fine, on each config run the IP is asked and successfully applied to the config. But when I execute the "1 clic deployment" it also asks the IP but does not transmit it to other dependants configs (the value stays <empty>
).
My question : How can I set this parameter to be applyed to others configs when it is prompted ?
PS : I've obviously tried to set it as an env.
parameter but it does not helps.
PS2 : Using templates does not seems to be a good solution for me.