-
Bug
-
Resolution: Unresolved
-
Blocker
-
None
We are configuring our job through dsl script.
Following is the dsl script:
plotBuildData {
plot('Namw', 'xyz.csv') {
csvFile('abcd.csv') {
includeColumns('avg_ct,avg_lt,avg_rt,stdev_rt')
showTable()
}
numberOfBuilds(6)
style('line')
title('title')
}
}
Now the issue which is coming, a seed job creates this particular job which uses plot plugin to plot graph.And when we run this job without doing any manual changes no graph gets plotted not even csv data displays.But as soon as we get inside config of this job and without doing any change also we just save the config so now it will say that this job has been manually changed since it was created by seed job and now when we run the job plot plugin behaves correctly and plots data and also lists out the csv.
Why is this happening that without the manual changes plot plugin is not working??