I had this same issue. My Jenkins build was running an maven Integration Test which was failing, and the message said
See /home/jenkins/jenkins-slave/workspace/UIMA-v3-sdk/jcasgen-maven-plugin/target/it/classpath/build.log for details. I could not see how to get access to this information, but eventually found by reading various things and doing some guessing that you can get access by going to the web URL for builds.apache.org, being logged in (I'm not sure this is required, but some other posts in this mailing list imply that this is needed), and then adding the secret phrase "/ws" following the url for your project in builds, that is, in my case: https://builds.apache.org/job/UIMA-v3-sdk/ws and for the specific module build, append the module, then /target/ etc. So to get to the build log from /home/jenkins/jenkins-slave/workspace/UIMA-v3-sdk/jcasgen-maven-plugin/target/it/classpath/build.log use https://builds.apache.org/job/UIMA-v3-sdk/ws/jcasgen-maven-plugin/target/it/classpath/build.log Hope this is helpful to others. If there is a more official or better way to do this, please reply to this thread :-) -Marshall Schor On 1/15/2015 10:10 PM, Tae-Geon Um wrote: > Hi, all. > > I have a question about retrieving jenkins-slave/workspace files. > > I’ve got an following error in this build > https://builds.apache.org/job/Reef-pull-request-ubuntu/187/ > <https://builds.apache.org/job/Reef-pull-request-ubuntu/187/> > > # > # A fatal error has been detected by the Java Runtime Environment: > # > # SIGSEGV (0xb) at pc=0xaea2d654, pid=24739, tid=4136602432 > # > # JRE version: 7.0_25-b15 > # Java VM: Java HotSpot(TM) Server VM (23.25-b01 mixed mode linux-x86 ) > # Problematic frame: > # C [libnet.so+0x14654] _fini+0x1d0c > # > # Failed to write core dump. Core dumps have been disabled. To enable core > dumping, try "ulimit -c unlimited" before starting Java again > # > # An error report file with more information is saved as: > # > /home/jenkins/jenkins-slave/workspace/Reef-pull-request-ubuntu/reef-wake/wake/hs_err_pid24739.log > # > # If you would like to submit a bug report, please visit: > # http://bugreport.sun.com/bugreport/crash.jsp > <http://bugreport.sun.com/bugreport/crash.jsp> > # The crash happened outside the Java Virtual Machine in native code. > # See problematic frame for where to report the bug. > # > Aborted > > I’m not sure why the error occurs so I want to retrieve the log file > ("/home/jenkins/jenkins-slave/workspace/Reef-pull-request-ubuntu/reef-wake/wake/hs_err_pid24739.log”) > to figure out the error. But, I don’t know how to get it. > > Is there any way to retrieve this file? > > Thanks, > —Taegeon > > >