How do I make Hudson/Jenkins fail if Sonar thresholds are breached?(如果违反声纳阈值,我如何让 Hudson/Jenkins 失败?)
问题描述
我正在使用 maven 构建我的 java 应用程序,Jenkins 用于 CI,Sonar 用于指标.
I am using maven to build my java app, Jenkins for CI and Sonar for metrics.
目前我有一个创建声纳报告的构建作业.(通过 Jenkins 中的构建后步骤触发.)
Currently I have a build job that creates the sonar report. (Triggered via a post-build step in Jenkins.)
如果满足某些阈值 - 即任何主要或阻止程序违规或复杂性超过 1.7,我想将其设置为使构建失败.
I would like to set this up to fail the build if certain thresholds are met - i.e. any major or blocker violations or Complexity more than 1.7.
任何指导将不胜感激!- L
Any guidance would be appreciated! - L
推荐答案
安装 构建断路器插件.
如果代码违反任何 警报阈值 您在项目的 Sonar 质量配置文件中指定.
Fails your build if the code breaches any of the alert thresholds you specify on the project's Sonar quality profile.
Sonarqube 不再推荐使用这个插件:
Sonarqube no longer recommends the use of this plugin:
- http://www.sonarqube.org/why-你不应该使用build-breaker/
自从我 7 年前写这个答案以来,产品似乎发生了变化
It appears the product has changed since I wrote this answer 7 years ago
- https://blog.sonarsource.com/打破声纳分析与詹金斯管道/
这篇关于如果违反声纳阈值,我如何让 Hudson/Jenkins 失败?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如果违反声纳阈值,我如何让 Hudson/Jenkins 失败?
基础教程推荐
- Struts2 URL 无法访问 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
