2vision2
2vision2

Reputation: 5023

Automation of documenting code base using Doxygen plug in Jenkins CI environment

I use a shell script to create/run doxygen doxyfile to document my code base

which works absolutely fine(Schedule runs and recursive scan code base also

works fine).

Now my requirement is to do the same job using Jenkins CI.

I added doxygen plug which generates documentation output and stores the result in Jenkin workspace.

My question, is there any another ways to run script and generate doxyfile in Jenkins environment and also

How to create url link to display doxygen HTML output.

Upvotes: 1

Views: 2723

Answers (1)

Phil
Phil

Reputation: 6164

Have you seen the Jenkins DocLink plugin? This plugin makes it easy to put a link on your project page to documentation generated in a build.

Upvotes: 2

Related Questions