3

I am using the latest version of TeamCity and I am trying to make a parameter specification that refers to parameters.

I tried making a select (combobox), where the options of the checkbox are referring to variables. This should be possible, as there is a "parameter" icon to the right of the box suggesting me that I can use parameters here.

The full setup is shown below.

enter image description here

However, when I want to run the build, the only options are literally %foo% and %bar% as if the parameters have not even been evaluated.

Instead I had expected the options to contain the values of the variables that they are pointing to.

What am I doing wrong here?

Mathias Lykkegaard Lorenzen
  • 15,031
  • 23
  • 100
  • 187

1 Answers1

0

Might be a bit late, but this is how I did it:

I have a few parameters for holding passwords, e.g. 'mfgpwd'

enter image description here

And I refer to these in another parameter using the syntax:

mfgpwd=%system.mfgpwd%

(I'm using TeamCity 8.1.5)

Rob
  • 1,037
  • 1
  • 13
  • 20