1

Is there a way to see TeamCity configurations that override parameter defined in template?

Martin
  • 708
  • 2
  • 10
  • 20

2 Answers2

2

I don't think so. What's worked for me in the past was to search through the project files on the filesystem. If you have many build configs, this will be faster than opening each of them in the GUI.

Search for something like this:

<param name="myParamInheritedFromTemplate" value="myOverrideValue" />

in <TeamCity data directory>/config/projects/**/*.xml. If it's absent in an XML file, that build config just inherits the value. If it's present, it overrides it.

It's hacky but it's quick.

sferencik
  • 3,144
  • 1
  • 24
  • 36
1

There is a feature request https://youtrack.jetbrains.com/issue/TW-21212, please vote. Current workaround are to either search the raw XML files with the settings stored under TeamCity Data Directory on the server as @sferencik suggested, or use REST API to get settings of all the build configurations and search for the parameter there. Let me know if you need help on any of these.

Alina Mishina
  • 3,320
  • 2
  • 22
  • 31