ERROR: Step ‘Publish JUnit test result report’ aborted due to exception: java.lang.OutOfMemoryError

Jenkins junit plugin 分析 xml 内存溢出:如下

ERROR: Step ‘Publish JUnit test result report’ aborted due to exception: java.lang.OutOfMemoryError_第1张图片

  这里查找发现 是 单测产生的有个xml 文件太大了 有570多兆,jenkins junit plugin  是 dom4j解析,dom4j 解析xml文件是一次性load内存的。文件大有问题。先注释相关单测,在跑是可以的。后面就分析为啥文件会这么大。。。

参考:https://bbs.csdn.net/topics/390850677 

你可能感兴趣的:(Jenkins,junit,plugin)