You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2020/09/15 17:21:23 UTC

[couchdb] branch 3.x updated: Prep for 3.1.1-RC2 (#3148) (#3152)

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

wohali pushed a commit to branch 3.x
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/3.x by this push:
     new 5b59511  Prep for 3.1.1-RC2 (#3148) (#3152)
5b59511 is described below

commit 5b595116c03b3ccd9a373305565d39ae6d614adc
Author: Joan Touzet <wo...@users.noreply.github.com>
AuthorDate: Tue Sep 15 17:20:48 2020 +0000

    Prep for 3.1.1-RC2 (#3148) (#3152)
---
 build-aux/Jenkinsfile.full | 92 ++++++++++++++++++++++++----------------------
 1 file changed, 48 insertions(+), 44 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 440359f..d7a7657 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -180,7 +180,7 @@ pipeline {
                 ./configure --with-curl --spidermonkey-version 60
                 make check || (build-aux/logfile-uploader.py && false)
 
-                # No package build for macOS at this time because of notarization
+                # No package build for macOS at this time
               '''
             } // withEnv
           } // steps
@@ -593,49 +593,53 @@ pipeline {
           } // post
         } // stage
 
-        stage('Debian Buster ppc64le') {
-          agent {
-            docker {
-              image 'couchdbdev/ppc64le-debian-buster-erlang-20.3.8.25-1:latest'
-              label 'ppc64le'
-              alwaysPull true
-              args "${DOCKER_ARGS}"
-            }
-          }
-          environment {
-            platform = 'buster'
-            sm_ver = '60'
-          }
-          stages {
-            stage('Build from tarball & test') {
-              steps {
-                unstash 'tarball'
-                sh( script: build_and_test )
-              }
-              post {
-                always {
-                  junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml, **/src/mango/nosetests.xml, **/test/javascript/junit.xml'
-                }
-              }
-            }
-            stage('Build CouchDB packages') {
-              steps {
-                sh( script: make_packages )
-                sh( script: cleanup_and_save )
-              }
-              post {
-                success {
-                  archiveArtifacts artifacts: 'pkgs/**', fingerprint: true
-                }
-              }
-            }
-          } // stages
-          post {
-            cleanup {
-              sh 'rm -rf ${WORKSPACE}/*'
-            }
-          } // post
-        } // stage
+/*
+  - Removed 2020.09.15 - VMs are offline
+*/
+
+//        stage('Debian Buster ppc64le') {
+//          agent {
+//            docker {
+//              image 'couchdbdev/ppc64le-debian-buster-erlang-20.3.8.25-1:latest'
+//              label 'ppc64le'
+//              alwaysPull true
+//              args "${DOCKER_ARGS}"
+//            }
+//          }
+//          environment {
+//            platform = 'buster'
+//            sm_ver = '60'
+//          }
+//          stages {
+//            stage('Build from tarball & test') {
+//              steps {
+//                unstash 'tarball'
+//                sh( script: build_and_test )
+//              }
+//              post {
+//                always {
+//                  junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml, **/src/mango/nosetests.xml, **/test/javascript/junit.xml'
+//                }
+//              }
+//            }
+//            stage('Build CouchDB packages') {
+//              steps {
+//                sh( script: make_packages )
+//                sh( script: cleanup_and_save )
+//              }
+//              post {
+//                success {
+//                  archiveArtifacts artifacts: 'pkgs/**', fingerprint: true
+//                }
+//              }
+//            }
+//          } // stages
+//          post {
+//            cleanup {
+//              sh 'rm -rf ${WORKSPACE}/*'
+//            }
+//          } // post
+//        } // stage
 
 	/*
 	 * Example of how to do a qemu-based run, please leave here