I am using Jenkins to run a simple script which displays output on the console. Now what I want is the output of the job is displayed on Jenkins dashboard somewhere.
Let us say the build script just does a dir
. Now I want to be able to click on the latest build of the project and see the output in Jenkins. I know I can always click on the build and then "console output"
. But this gives me more info than required, meaning it also gives me the inner workings of the script. What I want is a "dumb-user" display which just gives me the final output of the script.
Any plug-ins or ways to do this ?