How to permanently change a system property in TeamCity 6 from the build stage

I found a way to change the property in TeamCity:

##teamcity[setParameter name='ddd' value='fff']

But, unfortunately, this change occurs only for the current assembly. I want this change to be PERMANENT, but TeamCity only changes it for the current current build.

How to make a permanent change to a system property in TeamCity?

+5
source share
2 answers

The only solution using TeamCity 6.5 was to programmatically edit the Xml configuration file using a python script.

The build step calls a python script to change the variable during each build.

0
source
0

All Articles