gpt4 book ai didi

php - 在 Jenkinsfile 中使用 Clover PHP 和 Checkstyle

转载 作者:行者123 更新时间:2023-12-01 15:19:36 25 4
gpt4 key购买 nike

在我的 Freestyle Jenkins 作业中,我可以添加构建后操作以使用插件 Clover PHP 生成代码覆盖率报告并使用 Checkstyle 进行分析插件。

但是,我喜欢使用 Pipeline Jenkins 作业,因为它具有阶段 View 。对于管道作业,我需要在 Jenkinsfile 中设置所有内容。如何在 Jenkinsfile 中包含 Clover PHP 和 Checkstyle 插件函数?他们的页面上没有文档。

最佳答案

要完成其他答案,Clover PHP 不支持 jenkins 管道...但是您不需要此插件,您只需要 Clover Plugin

安装一个,然后你必须为你的例子添加到你的 jenkinsfile 中,是:

step([
$class: 'CloverPublisher',
cloverReportDir: 'reports/coverage',
cloverReportFileName: 'coverage.xml',
healthyTarget: [methodCoverage: 70, conditionalCoverage: 80, statementCoverage: 80],
unhealthyTarget: [methodCoverage: 50, conditionalCoverage: 50, statementCoverage: 50],
failingTarget: [methodCoverage: 0, conditionalCoverage: 0, statementCoverage: 0]])

这是我在当前项目中使用的。

关于php - 在 Jenkinsfile 中使用 Clover PHP 和 Checkstyle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41727010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com