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?

Was it helpful?

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)

OTHER TIPS

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...

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top