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/09/30 20:42:08 UTC

[cassandra] branch cassandra-3.0 updated (8a4c1d7 -> 9ee74c9)

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

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


    from 8a4c1d7  Add flag to ignore unreplicated keyspaces during repair
     new aaef142  In Jenkins propagate FAILURE from stages to pipeline, ssh artefacts to nightlies, and move ant's junitreport generation to a separate target "generate-test-report"
     new 9ee74c9  Merge branch 'cassandra-2.2' into cassandra-3.0

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .jenkins/Jenkinsfile | 16 +++++++++++++++-
 build.xml            | 21 +++++++++------------
 2 files changed, 24 insertions(+), 13 deletions(-)


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


[cassandra] 01/01: Merge branch 'cassandra-2.2' into cassandra-3.0

Posted by mc...@apache.org.
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

commit 9ee74c9dc003fa5d8a0bde3971763723ad163f09
Merge: 8a4c1d7 aaef142
Author: Mick Semb Wever <mc...@apache.org>
AuthorDate: Wed Sep 30 21:07:21 2020 +0200

    Merge branch 'cassandra-2.2' into cassandra-3.0

 .jenkins/Jenkinsfile | 16 +++++++++++++++-
 build.xml            | 21 +++++++++------------
 2 files changed, 24 insertions(+), 13 deletions(-)

diff --cc .jenkins/Jenkinsfile
index de9761a,09930ee..eceab9f
--- a/.jenkins/Jenkinsfile
+++ b/.jenkins/Jenkinsfile
@@@ -55,23 -56,6 +56,24 @@@ 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')
++                if (jvm_dtest_upgrade.result == 'FAILURE') currentBuild.result='FAILURE'
 +              }
 +            }
 +            post {
 +              always {
 +                  warnError('missing test xml files') {
 +                      script {
 +                          copyTestResults('jvm-dtest-upgrade', jvm_dtest_upgrade.getNumber())
 +                      }
 +                  }
 +              }
 +            }
 +          }
            stage('units') {
              steps {
                script {
@@@ -140,26 -128,9 +146,27 @@@
                }
              }
            }
 +          stage('cqlsh') {
 +            steps {
 +              script {
 +                cqlsh = build job: "${env.JOB_NAME}-cqlsh-tests", propagate: false
 +                  if (cqlsh.result != 'SUCCESS') unstable('cqlsh failures')
++                  if (cqlsh.result == 'FAILURE') currentBuild.result='FAILURE'
 +                }
 +              }
 +              post {
 +                always {
 +                    warnError('missing test xml files') {
 +                        script {
 +                            copyTestResults('cqlsh-test', cqlsh.getNumber())
 +                        }
 +                    }
 +                }
 +              }
 +            }
 +          }
        }
 -    }
 -    stage('Distributed Test') {
 +      stage('Distributed Test') {
          parallel {
            stage('dtest') {
              steps {


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