Skip to content

Commit 418c145

Browse files
committed
Remove warnings ng thresholds in lib/jenkins.api/src/api/model/job-publisher.lisp
* lib/jenkins.api/src/api/model/job-publisher.lisp (header): Updated copyright (define-interface-implementations publisher): removed slot IGNORE-FAILED-BUILDS? of ISSUES-RECORDER which is no longer present in the upstream schema
1 parent 6401569 commit 418c145

1 file changed

Lines changed: 33 additions & 37 deletions

File tree

lib/jenkins.api/src/api/model/job-publisher.lisp

Lines changed: 33 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;;; job-publisher.lisp --- Model classes for publisher implementations .
22
;;;;
3-
;;;; Copyright (C) 2012-2021 Jan Moringen
3+
;;;; Copyright (C) 2012-2021, 2024 Jan Moringen
44
;;;;
55
;;;; Author: Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
66

@@ -243,45 +243,41 @@
243243

244244
((issues-recorder "io.jenkins.plugins.analysis.core.steps.IssuesRecorder"
245245
:plugin "warnings-ng@8.10.1")
246-
((analysis-tools :type analysis-tool
247-
:xpath ("analysisTools/*"
248-
:if-multiple-matches :all)
249-
:initform '())
250-
(filters :type string
251-
:xpath ("filters/text()"
252-
:if-multiple-matches :all)
253-
:optional? nil
254-
:initform '())
246+
((analysis-tools :type analysis-tool
247+
:xpath ("analysisTools/*"
248+
:if-multiple-matches :all)
249+
:initform '())
250+
(filters :type string
251+
:xpath ("filters/text()"
252+
:if-multiple-matches :all)
253+
:optional? nil
254+
:initform '())
255255
;; Control
256-
(is-enabled-for-failure? :type boolean
257-
:xpath "isEnabledForFailure/text()"
258-
:initform t)
259-
(ignore-quality-gate? :type boolean
260-
:xpath "ignoreQualityGate/text()"
261-
:optional? nil
262-
:initform nil)
263-
(ignore-failed-builds? :type boolean
264-
:xpath "ignoreFailedBuilds/text()"
265-
:optional? nil
266-
:initform nil)
256+
(is-enabled-for-failure? :type boolean
257+
:xpath "isEnabledForFailure/text()"
258+
:initform t)
259+
(ignore-quality-gate? :type boolean
260+
:xpath "ignoreQualityGate/text()"
261+
:optional? nil
262+
:initform nil)
267263
;; Assessment
268-
(healthy-threshold :type non-negative-integer
269-
:xpath "healthy/text()"
270-
:optional? nil
271-
:initform 0)
272-
(unhealthy-threshold :type non-negative-integer
273-
:xpath "unhealthy/text()"
274-
:optional? nil
275-
:initform 0)
276-
(minimum-severity :type string
277-
:xpath "minimumSeverity/name/text()"
278-
:optional? nil
279-
:initform "HIGH")
264+
(healthy-threshold :type non-negative-integer
265+
:xpath "healthy/text()"
266+
:optional? nil
267+
:initform 0)
268+
(unhealthy-threshold :type non-negative-integer
269+
:xpath "unhealthy/text()"
270+
:optional? nil
271+
:initform 0)
272+
(minimum-severity :type string
273+
:xpath "minimumSeverity/name/text()"
274+
:optional? nil
275+
:initform "HIGH")
280276
;; Blame
281-
(blame-disabled? :type boolean
282-
:xpath "isBlameDisabled/text()"
283-
:optional? nil
284-
:initform nil))
277+
(blame-disabled? :type boolean
278+
:xpath "isBlameDisabled/text()"
279+
:optional? nil
280+
:initform nil))
285281
(:name-slot nil))
286282

287283
((checkstyle "hudson.plugins.checkstyle.CheckStylePublisher"

0 commit comments

Comments
 (0)