首页 > 技术文章 > (九)Jenkins集成用到的插件及配置

TestAndDevelp 2019-06-13 16:02 原文

需要用到的插件:(安装参考(八)安装Jenkins遇到问题及解决

ant的作用:执行脚本、保存执行结果jlt、生成报告

保存执行结果、生成报告是在一个目录中,现在在网页上可以查看,就用到了performance plugin、html publisher plugin

 

一、HTML Publisher plugin

功能:html报告展示

报错:Problem accessing /job/interface_test/HTML_20Report/index.html. Reason:      Not Found

原因:ant中build.xml指定生成的html文件名称与Jenkins里面设置的html名称不一致

https://blog.csdn.net/qq_39247153/article/details/80581277

最终的输出目录为%workspace%/HTMLReport/index.html

二、 Ant Plugin

三、Performance Plugin

作用:用来展示jmeter执行结果

之前ant集成jmeter时,查看结果需要到指定目录下查看,现在jmeter+ant+Jenkins可以在web页面直接查看

 

四、EmailExtension plugin

参考:https://blog.csdn.net/ZZY1078689276/article/details/77543254

https://blog.csdn.net/fullbug/article/details/53024562

 

推荐阅读