Hi, We are using the Jenkins Buildflow and loving it. One thing we do is launch the same subjob in parallel from the top job and pass in different variables.
e.g. Joblauncher TESTSUITE="test1 test2 test3" --->smoketestjob #1 --->smoketestjob #2 --->smoketestjob #3 We would like the vizualization to show us which test is run by the smoketestjob instance. We are able to update the jobid description in the subjob, e.g. like so "smoketestjob test3 #154", but we would also have it show as such in the visualisation. Like so: Joblauncher TESTSUITE="test1 test2 test3" --->smoketestjob test1 #1 --->smoketestjob test3 #2 --->smoketestjob test2 #3 This is what our DSL looks like: ============================== def aSuites = params['TESTSUITE'].tokenize(); parallel (aSuites.collect { name -> return { build("smoketest", TESTSUITE:name) } }) ============================== br/Frank -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.