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:10 UTC

[cassandra] branch cassandra-3.11 updated (cf27558 -> f5d5e72)

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

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


    from cf27558  Don't attempt value skipping with mixed cluster
     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
     new f5d5e72  Merge branch 'cassandra-3.0' into cassandra-3.11

The 3 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 | 19 ++++++++++++++++++-
 build.xml            | 21 +++++++++------------
 2 files changed, 27 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-3.0' into cassandra-3.11

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.11
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit f5d5e72f61cffa16b591e4dfb527aac6c728e638
Merge: cf27558 9ee74c9
Author: Mick Semb Wever <mc...@apache.org>
AuthorDate: Wed Sep 30 21:10:55 2020 +0200

    Merge branch 'cassandra-3.0' into cassandra-3.11

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

diff --cc .jenkins/Jenkinsfile
index 404ce60,eceab9f..257ba1f
--- a/.jenkins/Jenkinsfile
+++ b/.jenkins/Jenkinsfile
@@@ -35,26 -35,9 +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')
++                  if (stress.result == 'FAILURE') currentBuild.result='FAILURE'
 +                }
 +            }
 +            post {
 +              always {
 +                  warnError('missing test xml files') {
 +                      script {
 +                          copyTestResults('stress-test', stress.getNumber())
 +                      }
 +                  }
 +              }
 +            }
 +          }
            stage('jvm-dtest') {
              steps {
                script {
@@@ -140,23 -128,6 +146,24 @@@
                }
              }
            }
 +          stage('cdc') {
 +            steps {
 +              script {
 +                cdc = build job: "${env.JOB_NAME}-test-cdc", propagate: false
 +                if (cdc.result != 'SUCCESS') unstable('cdc failures')
++                if (cdc.result == 'FAILURE') currentBuild.result='FAILURE'
 +              }
 +            }
 +            post {
 +              always {
 +                  warnError('missing test xml files') {
 +                      script {
 +                          copyTestResults('test-cdc', cdc.getNumber())
 +                      }
 +                  }
 +              }
 +            }
 +          }
            stage('compression') {
              steps {
                script {
@@@ -179,21 -151,22 +187,22 @@@
                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())
 -                        }
 -                    }
 +            }
 +            post {
 +              always {
 +                  warnError('missing test xml files') {
 +                      script {
 +                          copyTestResults('cqlsh-tests', cqlsh.getNumber())
 +                      }
 +                  }
                  }
 -              }
              }
            }
 -      }
 -      stage('Distributed Test') {
 +        }
 +    }
 +    stage('Distributed Test') {
          parallel {
            stage('dtest') {
              steps {
@@@ -246,23 -222,6 +258,24 @@@
                }
              }
            }
 +          stage('dtest-offheap') {
 +            steps {
 +              script {
 +                dtest_offheap = build job: "${env.JOB_NAME}-dtest-offheap", propagate: false
 +                if (dtest_offheap.result != 'SUCCESS') unstable('dtest-offheap failures')
++                if (dtest_offheap.result == 'FAILURE') currentBuild.result='FAILURE'
 +              }
 +            }
 +            post {
 +              always {
 +                warnError('missing test xml files') {
 +                    script {
 +                        copyTestResults('dtest-offheap', dtest_offheap.getNumber())
 +                    }
 +                }
 +              }
 +            }
 +          }
          }
      }
      stage('Summary') {


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