Way to get projects status from build server?
Is there a way to get the projects status from our build server in an xml file? Otherwise is there another way to get a snapshot of all projects status on our server in way that's consumable by a .net app? I see there exists a java api, does there happen to be a .net one I could use that would give me this information?
Please sign in to leave a comment.
Hello Lee,
There is no .Net API. You could try to use REST plugin to get status of last build (get request for each build configuration e.g. http://teamcity.jetbrains.com/app/rest/buildTypes/id:bt200/builds?count=1)
Another approach can be to write a TeamCity plugin to the server using Java/Groovy/JRuby which will give information that can be parsed in. Net application.
Kind regards,
Marina