summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul J. Davis <paul.joseph.davis@gmail.com>2020-01-14 10:35:37 -0600
committerPaul J. Davis <paul.joseph.davis@gmail.com>2020-01-14 10:35:37 -0600
commitb13c748fd77a9a75571245602c9f46d3c4432bd5 (patch)
tree65eb7a1b0a401247025c3bccdd22349aadc38a4c
parent3573dcc10d7408f819e87c4c6454519cf1fd0c84 (diff)
downloadcouchdb-b13c748fd77a9a75571245602c9f46d3c4432bd5.tar.gz
Enable building on Power (ppc64le) architecture
-rw-r--r--build-aux/Jenkinsfile.full43
1 files changed, 43 insertions, 0 deletions
diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index c9327f800..2a298f36d 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -511,6 +511,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