We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ec6463 commit 4e06c37Copy full SHA for 4e06c37
1 file changed
.ci/Jenkinsfile
@@ -47,10 +47,12 @@ pipeline {
47
}
48
post {
49
always {
50
- archiveArtifacts(allowEmptyArchive: true, artifacts: 'src/github.com/elastic/elastic-package/build/test-results/*.xml')
51
- junit(allowEmptyResults: false,
+ dir("${BASE_DIR}") {
+ archiveArtifacts(allowEmptyArchive: true, artifacts: 'build/test-results/*.xml')
52
+ junit(allowEmptyResults: false,
53
keepLongStdio: true,
- testResults: "src/github.com/elastic/elastic-package/build/test-results/*.xml")
54
+ testResults: "build/test-results/*.xml")
55
+ }
56
57
58
0 commit comments