3

I have a requiement where I need to show custom badge or some kind of custom message somewhere on summary page (Pipelines -> Select Build -> Summary Page) of Azure DevOps build Pipeline based on code coverage or unit test or static code analysis. Is it possible to customize summary page of build? I checked few links which suggest we cann't custmize summary page but create some extenions.

Please help.

F11
  • 3,703
  • 12
  • 49
  • 83

1 Answers1

2

There are a couple of options for adding information to the build results page that you could explore depending on the depth of information you'd like to display.

Option 1 - add a tag to the build to indicate some type of status. This can be done manually or programmatically (using a logging command) as part of the build itself which could contain additional logic and evaulations/conditions before adding a tag. Badges do appear at the top of the build results page and will show across all tabs.

Option 2 - as you did mention, extensions allow you to customize results and even show additional tabs and information on the build results page. There is a sample extension called Build Results Enhancer that can help get you started.

SignalRichard
  • 1,572
  • 2
  • 17
  • 32