radders
radders

Reputation: 923

How to display build status of projects

We have several projects maintained in our VSTS repositories, and these are configured to auto-build on a commit/pull-request complete.

Many years ago, a company I worked for had a wall-mounted monitor which showed a grid of red/green 'tiles', each with the project name in it. These got updated automatically as a commit was made into SVN and a build started. I can't recall the name of the app we used.

Is there something similar for VSTS? I've searched for dashboards, etc., but that doesn't return anything like I've described.

Thanks

Upvotes: 4

Views: 2663

Answers (2)

Shayki Abramczyk
Shayki Abramczyk

Reputation: 41545

If you want in each project know his status you can add to his dashboard the "Build History" widget, then you will see the build history of the project with nice green/red indicates.

Add the widget:

enter image description here

Configure:

enter image description here

Results:

enter image description here

You can also install the Team Project Health widget, it enables users to visualize the overall health of builds, delivering a visual cue similar to the Codify Build Light:

enter image description here

Or you can install the Project Tile widget:

enter image description here

Upvotes: 5

Antebios
Antebios

Reputation: 1781

That sort of sounds like CruiseControl.NET or something similar. But, VSTS (now Azure Devops, or AD for short) does have a dashboard but you have to put each and every build definition status by hand. I don't like it. But, you could create your own dashboard with some simple html and just refresh it very x-number of seconds. Just copy and past the build badge from the build definition shown in the image below. And if the build fails, then a RED badge will be shown with the text "failure" or something like that. enter image description here

Upvotes: 1

Related Questions