Skip to content

Commit

Permalink
Debug AgentTest timeout hell with long stdio
Browse files Browse the repository at this point in the history
  • Loading branch information
abayer committed Mar 30, 2018
1 parent c85dd7b commit ff7c80d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pipeline {
// No matter what the build status is, run this step. There are other conditions
// available as well, such as "success", "failed", "unstable", and "changed".
always {
junit '*/target/surefire-reports/*.xml'
junit testResults: '*/target/surefire-reports/*.xml', keepLongStdio: true
}
success {
archive "**/target/*.hpi"
Expand All @@ -60,7 +60,7 @@ pipeline {
}
post {
always {
junit '*/target/surefire-reports/*.xml'
junit testResults: '*/target/surefire-reports/*.xml', keepLongStdio: true
}
}
}
Expand All @@ -75,7 +75,7 @@ pipeline {
// No matter what the build status is, run this step. There are other conditions
// available as well, such as "success", "failed", "unstable", and "changed".
always {
junit '*/target/surefire-reports/*.xml'
junit testResults: '*/target/surefire-reports/*.xml', keepLongStdio: true
}
success {
archive "**/target/*.hpi"
Expand All @@ -96,7 +96,7 @@ pipeline {
}
post {
always {
junit '*/target/surefire-reports/*.xml'
junit testResults: '*/target/surefire-reports/*.xml', keepLongStdio: true
}
}
}
Expand Down

0 comments on commit ff7c80d

Please sign in to comment.