|
1 | 1 | ;;;; job-publisher.lisp --- Model classes for publisher implementations . |
2 | 2 | ;;;; |
3 | | -;;;; Copyright (C) 2012-2021 Jan Moringen |
| 3 | +;;;; Copyright (C) 2012-2021, 2024 Jan Moringen |
4 | 4 | ;;;; |
5 | 5 | ;;;; Author: Jan Moringen <jmoringe@techfak.uni-bielefeld.de> |
6 | 6 |
|
|
243 | 243 |
|
244 | 244 | ((issues-recorder "io.jenkins.plugins.analysis.core.steps.IssuesRecorder" |
245 | 245 | :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 '()) |
255 | 255 | ;; 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) |
267 | 263 | ;; 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") |
280 | 276 | ;; 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)) |
285 | 281 | (:name-slot nil)) |
286 | 282 |
|
287 | 283 | ((checkstyle "hudson.plugins.checkstyle.CheckStylePublisher" |
|
0 commit comments