This is an automated email from the ASF dual-hosted git repository. mck pushed a commit to branch cassandra-3.11 in repository https://gitbox.apache.org/repos/asf/cassandra.git
commit 2beebbbedcbc4945916dca7e4728c713d6a02b70 Merge: 86a9261 ffc8e40 Author: Mick Semb Wever <[email protected]> AuthorDate: Sat Aug 8 10:18:02 2020 +0200 Merge branch 'cassandra-3.0' into cassandra-3.11 .jenkins/Jenkinsfile | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --cc .jenkins/Jenkinsfile index 9d94afb,de9761a..404ce60 --- a/.jenkins/Jenkinsfile +++ b/.jenkins/Jenkinsfile @@@ -35,27 -35,10 +35,27 @@@ pipeline steps { build job: "${env.JOB_NAME}-artifacts" } - } - stage('Test') { + } + stage('Test') { parallel { + stage('stress') { + steps { + script { + stress = build job: "${env.JOB_NAME}-stress-test", propagate: false + if (stress.result != 'SUCCESS') unstable('stress test failures') + } + } + post { + always { + warnError('missing test xml files') { + script { + copyTestResults('stress-test', stress.getNumber()) + } + } + } + } + } - stage('JVM DTests') { + stage('jvm-dtest') { steps { script { jvm_dtest = build job: "${env.JOB_NAME}-jvm-dtest", propagate: false --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
