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 2017/05/29 01:26:47 UTC

[couchdb] branch jenkins-pipeline updated (4b47774 -> 83e81c2)

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

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

     omits  4b47774   New Jenkinsfile for multibranch pipeline build
       new  83e81c2   New Jenkinsfile for multibranch pipeline build

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (4b47774)
            \
             N -- N -- N   refs/heads/jenkins-pipeline (83e81c2)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@couchdb.apache.org" <co...@couchdb.apache.org>'].

[couchdb] 01/01: New Jenkinsfile for multibranch pipeline build

Posted by wo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 83e81c29f9ae874255058668f08e8e3bdc978510
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Fri May 26 05:27:15 2017 -0400

    New Jenkinsfile for multibranch pipeline build
---
 Jenkinsfile                   | 306 ++++++++++++++++++++++++++++++++++++++++++
 build-aux/logfile-uploader.py |   5 +-
 2 files changed, 308 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..0ef6dde
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,306 @@
+#!groovy
+/*
+Licensed under the Apache License, Version 2.0 (the "License"); you may not
+use this file except in compliance with the License. You may obtain a copy of
+the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+License for the specific language governing permissions and limitations under
+the License.
+*/
+pipeline {
+  /* no top-level agent; agents must be declared for each stage */
+  agent none
+
+  environment {
+    COUCHAUTH = credentials('couchdb_vm2_couchdb')
+    recipient = 'notifications@couchdb.apache.org'
+  }
+
+  stages {
+    stage('Build') {
+      agent {
+        docker {
+          /* This image has the oldest Erlang we support, 16B03 */
+          image 'couchdbdev/ubuntu-14.04-erlang-default'
+          /* We need the jenkins user mapped inside of the image */
+          args '-v /etc/passwd:/etc/passwd -v /etc/group:/etc/group'
+        }
+      }
+      steps {
+        timeout(time: 15, unit: "MINUTES") {
+          /* npm config cache below is required because /home/jenkins doesn't
+             ACTUALLY exist in the image */
+          /* sh 'git clone --depth 10 https://github.com/apache/couchdb .' */
+          sh '''
+              export npm_config_cache=$(mktemp -d)
+              ./configure --with-curl
+              make dist
+          '''
+          stash includes: 'apache-couchdb-*.tar.gz', name: 'tarball'
+          archiveArtifacts artifacts: 'apache-couchdb-*.tar.gz', fingerprint: true
+          deleteDir()
+        }
+      }
+    }
+
+    /* TODO rework this once JENKINS-41334 is released
+       https://issues.jenkins-ci.org/browse/JENKINS-41334 */
+    /* The builddir stuff is to prevent all 10 builds from live syncing
+       their build results to each other during the build. Moving the
+       build outside of the workdir should speed up the build process too,
+       though it does mean we pollute /tmp whenever a build fails. */
+    stage('Test') {
+      steps {
+        parallel(centos6erlang183: {
+          node(label: 'ubuntu') {
+            timeout(time: 45, unit: "MINUTES") {
+              sh 'rm *.tar.gz || true'
+              unstash 'tarball'
+              sh 'docker pull couchdbdev/centos-6-erlang-18.3'
+              withDockerContainer(image: 'couchdbdev/centos-6-erlang-18.3', args: '-e LD_LIBRARY_PATH=/usr/local/bin --user 0:0') {
+                sh '''
+                  cwd=$(pwd)
+                  builddir=$(mktemp -d)
+                  cd $builddir
+                  tar -xf $cwd/apache-couchdb-*.tar.gz
+                  cd apache-couchdb-*
+                  ./configure --with-curl
+                  make all
+                  make check || (build-aux/logfile-uploader.py && false)
+                '''
+              } // withDocker
+            } // timeout
+          } // node
+        },
+        centos7erlangdefault: {
+          node(label: 'ubuntu') {
+            timeout(time: 30, unit: "MINUTES") {
+              sh 'rm *.tar.gz || true'
+              unstash 'tarball'
+              sh 'docker pull couchdbdev/centos-7-erlang-default'
+              withDockerContainer(image: 'couchdbdev/centos-7-erlang-default', args: '-e LD_LIBRARY_PATH=/usr/local/bin --user 0:0') {
+                sh '''
+                  cwd=$(pwd)
+                  builddir=$(mktemp -d)
+                  cd $builddir
+                  tar -xf $cwd/apache-couchdb-*.tar.gz
+                  cd apache-couchdb-*
+                  ./configure --with-curl
+                  make all
+                  make check || (build-aux/logfile-uploader.py && false)
+                '''
+              } // withDocker
+            } // timeout
+          } // node
+        },
+        centos7erlang183: {
+          node(label: 'ubuntu') {
+            timeout(time: 30, unit: "MINUTES") {
+              sh 'rm *.tar.gz || true'
+              unstash 'tarball'
+              sh 'docker pull couchdbdev/centos-7-erlang-18.3'
+              withDockerContainer(image: 'couchdbdev/centos-7-erlang-18.3', args: '-e LD_LIBRARY_PATH=/usr/local/bin --user 0:0') {
+                sh '''
+                  cwd=$(pwd)
+                  builddir=$(mktemp -d)
+                  cd $builddir
+                  tar -xf $cwd/apache-couchdb-*.tar.gz
+                  cd apache-couchdb-*
+                  ./configure --with-curl
+                  make all
+                  make check || (build-aux/logfile-uploader.py && false)
+                '''
+              } // withDocker
+            } // timeout
+          } // node
+        },
+        ubuntu1204erlang183: {
+          node(label: 'ubuntu') {
+            timeout(time: 30, unit: "MINUTES") {
+              sh 'rm *.tar.gz || true'
+              unstash 'tarball'
+              sh 'docker pull couchdbdev/ubuntu-12.04-erlang-18.3'
+              withDockerContainer(image: 'couchdbdev/ubuntu-12.04-erlang-18.3', args: '--user 0:0') {
+                sh '''
+                  cwd=$(pwd)
+                  builddir=$(mktemp -d)
+                  cd $builddir
+                  tar -xf $cwd/apache-couchdb-*.tar.gz
+                  cd apache-couchdb-*
+                  ./configure --with-curl
+                  make all
+                  make check || (build-aux/logfile-uploader.py && false)
+                '''
+              } // withDocker
+            } // timeout
+          } // node
+        },
+        ubuntu1404erlangdefault: {
+          node(label: 'ubuntu') {
+            timeout(time: 30, unit: "MINUTES") {
+              sh 'rm *.tar.gz || true'
+              unstash 'tarball'
+              sh 'docker pull couchdbdev/ubuntu-14.04-erlang-default'
+              withDockerContainer(image: 'couchdbdev/ubuntu-14.04-erlang-default', args: '--user 0:0') {
+                sh '''
+                  cwd=$(pwd)
+                  builddir=$(mktemp -d)
+                  cd $builddir
+                  tar -xf $cwd/apache-couchdb-*.tar.gz
+                  cd apache-couchdb-*
+                  ./configure --with-curl
+                  make all
+                  make check || (build-aux/logfile-uploader.py && false)
+                '''
+              } // withDocker
+            } // timeout
+          } // node
+        },
+        ubuntu1404erlang183: {
+          node(label: 'ubuntu') {
+            timeout(time: 30, unit: "MINUTES") {
+              sh 'rm *.tar.gz || true'
+              unstash 'tarball'
+              sh 'docker pull couchdbdev/ubuntu-14.04-erlang-18.3'
+              withDockerContainer(image: 'couchdbdev/ubuntu-14.04-erlang-18.3', args: '--user 0:0') {
+                sh '''
+                  cwd=$(pwd)
+                  builddir=$(mktemp -d)
+                  cd $builddir
+                  tar -xf $cwd/apache-couchdb-*.tar.gz
+                  cd apache-couchdb-*
+                  ./configure --with-curl
+                  make all
+                  make check || (build-aux/logfile-uploader.py && false)
+                '''
+              } // withDocker
+            } // timeout
+          } // node
+        },
+        ubuntu1604erlangdefault: {
+          node(label: 'ubuntu') {
+            timeout(time: 30, unit: "MINUTES") {
+              sh 'rm *.tar.gz || true'
+              unstash 'tarball'
+              sh 'docker pull couchdbdev/ubuntu-16.04-erlang-default'
+              withDockerContainer(image: 'couchdbdev/ubuntu-16.04-erlang-default', args: '--user 0:0') {
+                sh '''
+                  cwd=$(pwd)
+                  builddir=$(mktemp -d)
+                  cd $builddir
+                  tar -xf $cwd/apache-couchdb-*.tar.gz
+                  cd apache-couchdb-*
+                  ./configure --with-curl
+                  make all
+                  make check || (build-aux/logfile-uploader.py && false)
+                '''
+              } // withDocker
+            } // timeout
+          } // node
+        },
+        ubuntu1604erlang183: {
+          node(label: 'ubuntu') {
+            timeout(time: 30, unit: "MINUTES") {
+              sh 'rm *.tar.gz || true'
+              unstash 'tarball'
+              sh 'docker pull couchdbdev/ubuntu-16.04-erlang-18.3'
+              withDockerContainer(image: 'couchdbdev/ubuntu-16.04-erlang-18.3', args: '--user 0:0') {
+                sh '''
+                  cwd=$(pwd)
+                  builddir=$(mktemp -d)
+                  cd $builddir
+                  tar -xf $cwd/apache-couchdb-*.tar.gz
+                  cd apache-couchdb-*
+                  ./configure --with-curl
+                  make all
+                  make check || (build-aux/logfile-uploader.py && false)
+                '''
+              } // withDocker
+            } // timeout
+          } // node
+        },
+        debian8erlangdefault: {
+          node(label: 'ubuntu') {
+            timeout(time: 30, unit: "MINUTES") {
+              sh 'rm *.tar.gz || true'
+              unstash 'tarball'
+              sh 'docker pull couchdbdev/debian-8-erlang-default'
+              withDockerContainer(image: 'couchdbdev/debian-8-erlang-default', args: '--user 0:0') {
+                sh '''
+                  cwd=$(pwd)
+                  builddir=$(mktemp -d)
+                  cd $builddir
+                  tar -xf $cwd/apache-couchdb-*.tar.gz
+                  cd apache-couchdb-*
+                  ./configure --with-curl
+                  make all
+                  make check || (build-aux/logfile-uploader.py && false)
+                '''
+              } // withDocker
+            } // timeout
+          } // node
+        },
+        debian8erlang183: {
+          node(label: 'ubuntu') {
+            timeout(time: 30, unit: "MINUTES") {
+              sh 'rm *.tar.gz || true'
+              unstash 'tarball'
+              sh 'docker pull couchdbdev/debian-8-erlang-18.3'
+              withDockerContainer(image: 'couchdbdev/debian-8-erlang-18.3', args: '--user 0:0') {
+                sh '''
+                  cwd=$(pwd)
+                  builddir=$(mktemp -d)
+                  cd $builddir
+                  tar -xf $cwd/apache-couchdb-*.tar.gz
+                  cd apache-couchdb-*
+                  ./configure --with-curl
+                  make all
+                  make check || (build-aux/logfile-uploader.py && false)
+                '''
+              } // withDocker
+            } // timeout
+          } // node
+        }
+        ) // parallel
+      } // steps
+    } // stage
+
+    stage('Publish') {
+      when {
+        branch '*(master|2.0.x|2.1.x)'
+      }
+      agent any
+      steps {
+        /* Push it somewhere useful other than Jenkins, maybe? */
+        /* echo 'Publishing tarball...'
+        unstash 'tarball' */
+        echo 'Triggering Debian .deb builds...'
+        echo 'Triggering Ubuntu .deb builds...'
+        echo 'Triggering Ubuntu snap builds...'
+        echo 'Triggering CentOS .rpm builds...'
+        echo 'Cleaning workspace...'
+        sh 'rm -rf * .[a-zA-Z]*'
+      }
+    }
+  }
+
+  post {
+    success {
+      mail to: "${env.recipient}",
+        subject: "[Jenkins] SUCCESS: ${currentBuild.fullDisplayName}",
+        replyTo: "${env.recipient}",
+        body: "Yay, we passed. ${env.BUILD_URL}"
+    }
+    failure {
+      mail to: "${env.recipient}",
+        subject: "[Jenkins] FAILURE: ${currentBuild.fullDisplayName}",
+        replyTo: "${env.recipient}",
+        body: "Boo, we failed. ${env.BUILD_URL}"
+    }
+  }
+}
diff --git a/build-aux/logfile-uploader.py b/build-aux/logfile-uploader.py
index 7218b58..27a5c94 100755
--- a/build-aux/logfile-uploader.py
+++ b/build-aux/logfile-uploader.py
@@ -59,9 +59,8 @@ def build_ci_doc():
         doc['builder'] = 'jenkins'
         doc['build_id'] = os.environ['BUILD_NUMBER']
         doc['url'] = os.environ['BUILD_URL']
-        doc['branch'] = os.environ['GIT_BRANCH']
-        doc['commit'] = os.environ['GIT_COMMIT']
-        doc['repo'] = os.environ['GIT_URL']
+        doc['branch'] = os.environ['BRANCH_NAME']
+        doc['repo'] = 'https://github.com/apache/couchdb'
     else:
         doc['builder'] = 'manual'
         # TODO: shell out to get correct repo, commit, branch info?

-- 
To stop receiving notification emails like this one, please contact
"commits@couchdb.apache.org" <co...@couchdb.apache.org>.