Skip to content

Commit

Permalink
Remove warnings ng thresholds in lib/jenkins.api/src/api/model/job-pu…
Browse files Browse the repository at this point in the history
…blisher.lisp

The Warnings NG plugin replaced the thresholds parameters with more
fine-grained qualityGates in version 3.0.0:
https://github.com/jenkinsci/warnings-ng-plugin/blob/master/CHANGELOG.md#300---2019-2-13

* lib/jenkins.api/src/api/model/job-publisher.lisp (publisher): remove
  threshold-* slots
  • Loading branch information
rhaschke authored and scymtym committed Sep 13, 2021
1 parent 2dc4a23 commit f8e2dd0
Showing 1 changed file with 0 additions and 64 deletions.
64 changes: 0 additions & 64 deletions lib/jenkins.api/src/api/model/job-publisher.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -277,70 +277,6 @@
:xpath "minimumSeverity/name/text()"
:optional? nil
:initform "HIGH")
(threshold-unstable-total-all :type non-negative-integer
:xpath "thresholds/unstableTotalAll/text()"
:optional? t
:initform 0)
(threshold-unstable-total-high :type non-negative-integer
:xpath "thresholds/unstableTotalHigh/text()"
:optional? t
:initform 0)
(threshold-unstable-total-normal :type non-negative-integer
:xpath "thresholds/unstableTotalNormal/text()"
:optional? t
:initform 0)
(threshold-unstable-total-low :type non-negative-integer
:xpath "thresholds/unstableTotalLow/text()"
:optional? t
:initform 0)
(threshold-unstable-new-all :type non-negative-integer
:xpath "thresholds/unstableNewAll/text()"
:optional? t
:initform 0)
(threshold-unstable-new-high :type non-negative-integer
:xpath "thresholds/unstableNewHigh/text()"
:optional? t
:initform 0)
(threshold-unstable-new-normal :type non-negative-integer
:xpath "thresholds/unstableNewNormal/text()"
:optional? t
:initform 0)
(threshold-unstable-new-low :type non-negative-integer
:xpath "thresholds/unstableNewLow/text()"
:optional? t
:initform 0)
(threshold-failed-total-all :type non-negative-integer
:xpath "thresholds/failedTotalAll/text()"
:optional? t
:initform 0)
(threshold-failed-total-high :type non-negative-integer
:xpath "thresholds/failedTotalHigh/text()"
:optional? t
:initform 0)
(threshold-failed-total-normal :type non-negative-integer
:xpath "thresholds/failedTotalNormal/text()"
:optional? t
:initform 0)
(threshold-failed-total-low :type non-negative-integer
:xpath "thresholds/failedTotalLow/text()"
:optional? t
:initform 0)
(threshold-failed-new-all :type non-negative-integer
:xpath "thresholds/failedNewAll/text()"
:optional? t
:initform 0)
(threshold-failed-new-high :type non-negative-integer
:xpath "thresholds/failedNewHigh/text()"
:optional? t
:initform 0)
(threshold-failed-new-normal :type non-negative-integer
:xpath "thresholds/failedNewNormal/text()"
:optional? t
:initform 0)
(threshold-failed-new-low :type non-negative-integer
:xpath "thresholds/failedNewLow/text()"
:optional? t
:initform 0)
;; Blame
(blame-disabled? :type boolean
:xpath "isBlameDisabled/text()"
Expand Down

0 comments on commit f8e2dd0

Please sign in to comment.