Skip to content

Commit

Permalink
Merge branch 'cassandra-3.0' into cassandra-3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsembwever committed Aug 8, 2020
2 parents 86a9261 + ffc8e40 commit 2beebbb
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pipeline {
}
}
}
stage('JVM DTests') {
stage('jvm-dtest') {
steps {
script {
jvm_dtest = build job: "${env.JOB_NAME}-jvm-dtest", propagate: false
Expand All @@ -72,6 +72,23 @@ pipeline {
}
}
}
stage('jvm-dtest-upgrade') {
steps {
script {
jvm_dtest_upgrade = build job: "${env.JOB_NAME}-jvm-dtest-upgrade", propagate: false
if (jvm_dtest_upgrade.result != 'SUCCESS') unstable('jvm-dtest-upgrade failures')
}
}
post {
always {
warnError('missing test xml files') {
script {
copyTestResults('jvm-dtest-upgrade', jvm_dtest_upgrade.getNumber())
}
}
}
}
}
stage('units') {
steps {
script {
Expand Down

0 comments on commit 2beebbb

Please sign in to comment.