Reputation: 923
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
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:
Configure:
Results:
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:
Or you can install the Project Tile widget:
Upvotes: 5
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.
Upvotes: 1