Hi All,
I want to display the result of the build in the Jenkins dashboard,
Example,
i've a perl script, which display the database values.
Now, how can i configure my Jenkins such that it will display those values directly into the Jenkins dashboard.
my perl script is looks in this way:-
open IN3,"List.txt";
@lines1=<IN3>;
close(IN3);
print "List of the files \n";
foreach $lines1 (@lines1)
{
print "hi"
}
when i execute the above script with Jenkins, i'm able to see only "List of the files" but not the lines from the file.
How to resolve this ?
Thanks in advance.
Karthik