Can we generate an HTML report in the Jenkins dashboard without redirecting to an HTML page?

I want to customize the Jenkins report view using an HTML report. I can publish the HTML report using the HTML Publisher plugin, but this will go to the HTML page in the full window. Instead, I want to create an HTML report view inside the Jenkins toolbar where the test results or graph are displayed.

Can anyone suggest publishing my HTML page inside the Jenkins toolbar, for example, the test results and trend graphs that are embedded on the Jenkins page? If any plugins or any changes to the Jenkins configuration are available.

+4
source share
2 answers

You can try HTML Publisher Plugin , but there is also a useful plugin called DocLinks , which allows you to publish your documents created at the assembly stages as links on the project page. Others are Doxygen and Cucumber .

+2
source

If you installed the Dashboard view plugin, then:

1.Go to Edit view
2.Select "Iframe portlate" and add path of your html file.
3.Click apply.

See your toolbar. HTML reports are displayed here.

+2
source

Source: https://habr.com/ru/post/1544860/


All Articles