Support #912
Jenkins console output feature request
Start date:
17 February 2012
Due date:
% Done:
100%
Estimated time:
Workflow:
New Issue
Description
The Jenkins web interface shows console output as a build is running. Most of our build output however goes to a log file which is not displayed. Would it be difficult to get Jenkins to do a tail -f of the log file and display it in the interface? Just a thought...
Updated by Rogers, Chris almost 12 years ago
- Status changed from Open to Closed
- Target version set to Future MAUS release
- % Done changed from 0 to 100
Have a look at the configure script for MAUS_per_commit
http://test.mice.rl.ac.uk/job/MAUS_per_commit/configure
./install_build_test.bash /var/lib/jenkins/jobs/MAUS_per_commit_third_party/workspace & tail -f $WORKSPACE/install_log_std
The point being that there is a tail -f command in there... and uses $WORKSPACE environment variable to point to the right place. Leave it to you to implement wherever you want...
Updated by Rogers, Chris almost 12 years ago
Humm this doesn't work. Probably should be
cat $WORKSPACE/install_log_std