5

We are using jenkins for CI and have some complex jobs interdependent.I just want to represent graphically or in any other way the dependencies of jobs.I investigated and installed dependency graph with graphviz representation but its giving too complex figures.Any one know any other plugins?

Sarath S
  • 373
  • 3
  • 6
  • 17
  • It should be possible to look at a job depending graph in graphviz which might reduce the size of the graph significantly. Still not the best solution, but might be worth a try. – volker Dec 31 '14 at 15:42

2 Answers2

3

Consider some view plugins :

https://wiki.jenkins-ci.org/display/JENKINS/Build+Pipeline+Plugin (shows you dependency chains)

https://wiki.jenkins-ci.org/display/JENKINS/Delivery+Pipeline+Plugin (shows you dependency chains that affected previous runs)

rogerdpack
  • 62,887
  • 36
  • 269
  • 388
kkamil
  • 2,593
  • 11
  • 21
1

Jenkins recently added first class support for workflow. Written and supported by Kohsuke.

Andrew Gray
  • 3,593
  • 3
  • 35
  • 62
  • This appears to be a plugin for creating workflows (i.e. not using normal dependency trees), not viewing existing ones [?] – rogerdpack Sep 20 '16 at 21:00