We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a2b599 commit 8a6efc1Copy full SHA for 8a6efc1
1 file changed
src/jenkins/library-tests
@@ -18,11 +18,13 @@ pipeline {
18
}
19
post {
20
always {
21
- junit allowEmptyResults: true, testResults: 'target/surefire-reports/**/*.xml'
22
- recordIssues enabledForFailure: true, sourceCodeEncoding: 'UTF-8', tools: [java()]
23
- step([$class: 'Mailer',
24
- notifyEveryUnstableBuild: true,
25
- recipients: "rbri@rbri.de"])
+ node('') {
+ junit allowEmptyResults: true, testResults: 'target/surefire-reports/**/*.xml'
+ recordIssues enabledForFailure: true, sourceCodeEncoding: 'UTF-8', tools: [java()]
+ step([$class: 'Mailer',
+ notifyEveryUnstableBuild: true,
26
+ recipients: "rbri@rbri.de"])
27
+ }
28
29
30
0 commit comments