TeamCity build status icon
July 26th, 2012 by Evgeny GoldinWith the upcoming version of TeamCity 7.1, it is now easier to get status updates on a build, by using TeamCity’s HTTP API . We have had this functionality in the past, however it hasn’t been straightforward to use and not the most ideal solution for things like markup pages.
With 7.1, which is currently in EAP we have simplified this. The following single line of code:
<img src=”http://evgeny-goldin.org/teamcity/app/rest/builds/buildType:(id:bt54)/statusIcon”/>
produces the status icon for the “rest-clients” project:
.
The only thing you need to know about the project is the build configuration ID, which is always accessible in the URL address bar
If a build is not successful, you’ll see:
or ![]()
The code required is:
<pre><a href="http://teamcity/viewType.html?buildTypeId=btN&guest=1">
<img src="http://teamcity/app/rest/builds/buildType:(id:btN)/statusIcon"/>
</a>
Don’t forget to add the “guest=1″ parameters to the URL so that people clicking on the link will be taken directly to the build page. Otherwise they’ll be welcomed with a login screen. See it in action on GitHub. For more details about the options available, see the documentation page.
Happy green builds!


July 31st, 2012 at 10:14 am
Guys,
First of all it’s great !
One thing I’ve noticed is that github changes and caches url when referencing non https images, so build status is cached ;/ To avoid that Teamcity needs to be configured to use https.
Cheers,
Tadek