Teamcity Custom Script Log Out

I use a very simple custom Script in TeamCity 7.0.3, which uses Visual Studio 2010 to create the solution and its installers.

Build Failure and Only TeamCity Build Log Error

[13:17:13] Process terminated with code 1

When I run the same Script from the console, I get many useful errors about why the assembly failed.

How can I get TeamCity to include errors from the devenv.exe file?

+7
source share
1 answer

You need to provide additional TeamCity information so that it can interpret.

Check out this article to learn how to do this:

http://confluence.jetbrains.net/display/TCD7/Build+Script+Interaction+with+TeamCity

For a basic example:

You can report messages to the build log as follows:

##teamcity[message text='<message text>' errorDetails='<error details>' status='<status value>']

+6
source

All Articles