Skip to content

Commit d201fba

Browse files
Jenkinsfile-Windows: no hs_err files by default, do not fail build.
1 parent cd2cc13 commit d201fba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ pipeline {
8686
post {
8787
always {
8888
junit '**/build/test-results/**/TEST-*.xml'
89-
archiveArtifacts artifacts: 'tests/*/hs_err_pid*.log', allowEmptyArchive: true
89+
archiveArtifacts artifacts: 'tests/*/hs_err_pid*.log', allowEmptyArchive: true // Only on JVM crash.
9090
// currently unused: archiveArtifacts '**/build/reports/findbugs/*'
9191

9292
googlechatnotification url: 'id:gchat_java', message: "${currentBuild.currentResult}: ${currentBuild.fullDisplayName}\n${env.BUILD_URL}",

ci/Jenkinsfile-Windows

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ pipeline {
4343
post {
4444
always {
4545
junit '**/build/test-results/**/TEST-*.xml'
46-
archiveArtifacts 'tests/*/hs_err_pid*.log'
47-
archiveArtifacts '**/build/reports/findbugs/*'
46+
archiveArtifacts artifacts: 'tests/*/hs_err_pid*.log', allowEmptyArchive: true // Only on JVM crash.
47+
// currently unused: archiveArtifacts '**/build/reports/findbugs/*'
4848
}
4949

5050
failure {

0 commit comments

Comments
 (0)