Question

Is it possible to call a command line program in teamcity and to pipe the output from the command line program to a file?

Était-ce utile?

La solution 2

Yes of course - you can use a Powershell build step for this and pipe the console output to a file, here a practical example:

git rev-parse HEAD > GitRevision.txt

Note that this question/answer is really unrelated to TeamCity - this is just Powershell (you can achieve the same using command line)

Autres conseils

You might be looking for something similar to : http://confluence.jetbrains.com/display/TCD7/Command+Line option .

in 'Build Steps' - you can choose 'Command Line' as Runner Type and in Run select 'Custom script' & write the shell command line to execute in 'Custom script' text area.

echo "Hello there!!" | tee someFile.log

And add to artifact path if you want to...

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top