Add custom link to hudson project page

I am using Hudson to create documentation for a Python project using Sphinx. This creates the HTML documentation in the project of the / _build / html folder that I configured to use as an assembly artifact. Now, after completing the task, I can go to the documentation by clicking the "Artifacts" link, then in the folder and then in the index.html file. This is a little cumbersome, so I would like to set up the project page so that I have a link to "View documentation", which displays me directly in the index.html file. Is there a way to do this using hudson?

+5
source share
3 answers

The project description allows HTML to simply edit it and put a link to your documents from the last successful build.

+2
source

I know the question is closed, but I thought you could try this. You do not need a separate HTTP server to serve the HTML documentation, artifact or not. You can use the plugin: http://wiki.hudson-ci.org/display/HUDSON/HTML+Publisher+Plugin

+4
source

Get the sideline plugin. This will allow you to add a link to those that are on the left side of the project page.

+1
source

All Articles