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

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


The following commit(s) were added to refs/heads/master by this push:
     new 35b9d45  Enable building on Power (ppc64le) architecture (#2455)
35b9d45 is described below

commit 35b9d4585a5642ed60607b65746d855acbf491a2
Author: Paul J. Davis <[email protected]>
AuthorDate: Tue Jan 21 12:40:07 2020 -0600

    Enable building on Power (ppc64le) architecture (#2455)
    
    Co-authored-by: Joan Touzet <[email protected]>
---
 build-aux/Jenkinsfile.full | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index c6ca2e2..b9067a1 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -512,6 +512,49 @@ pipeline {
           } // post
         } // stage
 
+        stage('Debian Buster ppc64le') {
+          agent {
+            docker {
+              image 
'couchdbdev/ppc64le-debian-buster-erlang-20.3.8.24-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

Reply via email to