You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by mc...@apache.org on 2020/08/08 08:22:15 UTC

[cassandra] branch cassandra-3.0 updated: Run in-jvm upgrade dtests in ci-cassandra

This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch cassandra-3.0
in repository https://gitbox.apache.org/repos/asf/cassandra.git


The following commit(s) were added to refs/heads/cassandra-3.0 by this push:
     new ffc8e40  Run in-jvm upgrade dtests in ci-cassandra
ffc8e40 is described below

commit ffc8e407e087e942c4e5c40605743fe3b32d8fd5
Author: Mick Semb Wever <mc...@apache.org>
AuthorDate: Fri Aug 7 11:37:57 2020 +0200

    Run in-jvm upgrade dtests in ci-cassandra
    
     patch by Mick Semb Wever; reviewed by David Capwell for CASSANDRA-16031
---
 .jenkins/Jenkinsfile | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/.jenkins/Jenkinsfile b/.jenkins/Jenkinsfile
index 4a640c2..de9761a 100644
--- a/.jenkins/Jenkinsfile
+++ b/.jenkins/Jenkinsfile
@@ -38,7 +38,7 @@ pipeline {
       }
       stage('Test') {
         parallel {
-          stage('JVM DTests') {
+          stage('jvm-dtest') {
             steps {
               script {
                 jvm_dtest = build job: "${env.JOB_NAME}-jvm-dtest", propagate: false
@@ -55,6 +55,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 {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org