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/04/28 22:08:47 UTC

[couchdb] 01/01: Add Ubuntu Focal (20.04) + SM68 to Jenkins

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

wohali pushed a commit to branch jenkins-fossa-sm68
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 4096665483d50dd6f96dafff1f6355311ea7024c
Author: Joan Touzet <wo...@apache.org>
AuthorDate: Tue Apr 28 22:08:17 2020 +0000

    Add Ubuntu Focal (20.04) + SM68 to Jenkins
---
 build-aux/Jenkinsfile.full | 44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index d885254..2f59799 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -417,6 +417,50 @@ pipeline {
           } // post
         } // stage
 
+        stage('Ubuntu Focal') {
+          agent {
+            docker {
+              image 'couchdbdev/ubuntu-focal-erlang-20.3.8.25-1:latest'
+              label 'docker'
+              alwaysPull true
+              args "${DOCKER_ARGS}"
+            }
+          }
+          environment {
+            platform = 'focal'
+            sm_ver = '68'
+          }
+          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
+
         stage('Debian Stretch') {
           agent {
             docker {