![Christian Fetzer](/assets/img/avatar_default.png)
Add optional parameters fail-no-reports and fail-invalid-reports that set the build status to failure if no valgrind reports are available or if the reports are malformed. This parameters have been added to the Jenkins Valgrind Plugin version 0.21. Change-Id: I558802896f24a596f07957ab58a83fcaf6054093
17 lines
386 B
YAML
17 lines
386 B
YAML
publishers:
|
|
- valgrind:
|
|
pattern: "test.xml"
|
|
thresholds:
|
|
unstable:
|
|
invalid-read-write: 1
|
|
definitely-lost: 2
|
|
total: 3
|
|
failed:
|
|
invalid-read-write: 4
|
|
definitely-lost: 5
|
|
total: 6
|
|
fail-no-reports: true
|
|
fail-invalid-reports: true
|
|
publish-if-aborted: true
|
|
publish-if-failed: true
|