Any way to set up the Success label on the Projects page?

When Teamcity makes a successful build, it displays a green label "Success" (or "Tests Passed ...").

Is it possible to configure this shortcut, for example, an output environment variable?

+6
source share
1 answer

You can customize the assembly status message shown for completed assemblies using TeamCity service messages. The TeamCity documentation describes in detail the format of these messages, which you just need to output to standard output. The following is an example build status message:

##teamcity[buildStatus status='SUCCESS' text='{build.status.text} and some aftertext'] 

Build Script TeamCity Documentation Interaction

+10
source

Source: https://habr.com/ru/post/943942/


All Articles