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

有帮助吗?

解决方案 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)

其他提示

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top