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 2019/12/13 00:03:23 UTC

[couchdb] branch jenkins-pr-jenkinsfile updated (b0d1b01 -> 4a90f21)

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

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


 discard b0d1b01  Rework CI setup
     new 4a90f21  Rework CI setup

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   (b0d1b01)
            \
             N -- N -- N   refs/heads/jenkins-pr-jenkinsfile (4a90f21)

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 "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" 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 "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 build-aux/Jenkinsfile.full | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)


[couchdb] 01/01: Rework CI setup

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

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

commit 4a90f21cbce1a01436bf88c48b501c7a06afded8
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Thu Dec 12 02:10:38 2019 -0500

    Rework CI setup
    
    This commit:
    
    * Removes Travis CI from the build (no more .travis.yml)
      and our README file
    * Moves Jenkinsfile to build-aux/Jenkinsfile.full and updates the version
      of Erlang used in all steps to 20.3.8.24
    * Introduces a new build-aux/Jenkinsfile.pr that just builds
      CouchDB against the 3 most important versions of Erlang,
      intended for use when building PRs
    * Removes `make elixir` from `make check`. See email to dev@couchdb.a.o
      for details.
    
    TODO
    ====
    1. Once DNS is updated & Jenkins is ready, move pointer in README for badge to
       correct job in new Jenkins host
    1. Finish setting up Jenkins for multibranch pipeline, correctly, so it builds
       PRs, including PRs not from branches in the same repo (fork branches)
---
 .travis.yml                               |  86 ----------
 Makefile                                  |   2 +-
 README.rst                                |   5 -
 Jenkinsfile => build-aux/Jenkinsfile.full |  16 +-
 build-aux/Jenkinsfile.pr                  | 255 ++++++++++++++++++++++++++++++
 5 files changed, 264 insertions(+), 100 deletions(-)

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 0e1a54a..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,86 +0,0 @@
-language: elixir
-elixir: 1.7.4
-os: linux
-dist: trusty
-
-otp_release:
-   - 22.0.5
-   - 21.2.3
-   - 20.3.8.5
-   - 19.3
-
-addons:
-  apt:
-    sources:
-      - deadsnakes
-    packages:
-    - build-essential
-    - curl
-    - libcurl4-openssl-dev
-    - libicu-dev
-    - libmozjs185-dev
-    - pkg-config
-    - python3.6
-    - python3.6-dev
-    - python3.6-venv
-    - python3-requests
-    - python3-sphinx
-#    - sphinx-rtd-theme
-    - help2man
-    - shunit2
-
-git:
-  depth: 10
-
-# logfile uploader uses requests
-cache:
-  - pip
-
-# logfile uploader credentials
-env:
-  global:
-    - secure: "UdA/gKIlyuXaW+hUgRx40t1TYjLCGxMqHvM5Uw7UbUH2dqEkgJiLfhZGchS1JVzl8M01VKZUUzS7v2nvRLiHZN1kvaw5kfq31VRoafUah8jfmvqNWZVdLovHl3aw5UX/HRt0RkbWbhdbdknTfh6+YinSZ+Nb54jCErMg9nabXtM="
-    - COUCHDB_IO_LOG_DIR=/tmp/couchjslogs
-
-# Enable this block if you want to build docs & fauxton too
-#node_js:
-#  - 6
-#before_script:
-#  - ./configure -c
-
-# Then comment this section out
-before_script:
-  - kerl list installations
-  - rm -rf /tmp/couchjslogs
-  - mkdir -p /tmp/couchjslogs
-  - ./configure -c --disable-docs --disable-fauxton
-  - python3.6 -m venv /tmp/.venv
-  - source /tmp/.venv/bin/activate
-  - pip install requests
-
-script:
-   - make check
-
-after_failure:
-  - build-aux/logfile-uploader.py
-
-# start a push build on master and release branches + PRs build on every branch
-# Avoid double build on PRs (See https://github.com/travis-ci/travis-ci/issues/1147)
-branches:
-  only:
-    - master
-    - /^\d+\.x\.x$/
-    - /^\d+\.\d+\.x$/
-
-# Re-enable once test suite is reliable
-#notifications:
-#  email: false
-#  irc:
-#    channels:
-#      "irc.freenode.org#couchdb-dev"
-#  on_success: change
-#  on_failure: always
-#  use_notice: true
-#  skip_join: true
-#  template:
-#    - %{repository_slug}/%{branch}: %{message} %{build_url}"
diff --git a/Makefile b/Makefile
index 4c1283b..65003a4 100644
--- a/Makefile
+++ b/Makefile
@@ -151,7 +151,7 @@ check: all
 	@$(MAKE) eunit
 	@$(MAKE) javascript
 	@$(MAKE) mango-test
-	@$(MAKE) elixir
+#	@$(MAKE) elixir
 #	@$(MAKE) build-test
 
 
diff --git a/README.rst b/README.rst
index a03d6ec..3519009 100644
--- a/README.rst
+++ b/README.rst
@@ -2,14 +2,9 @@ Apache CouchDB README
 =====================
 
 +--------------------------------+------------+
-| Travis CI master build status  | |travisci| |
-+--------------------------------+------------+
 | Jenkins CI master build status | |jenkins|  |
 +--------------------------------+------------+
 
-.. |travisci| image:: https://travis-ci.org/apache/couchdb.svg?branch=master
-    :target: https://travis-ci.org/apache/couchdb
-
 .. |jenkins| image:: https://builds.apache.org/job/CouchDB/job/master/badge/icon
     :target: https://builds.apache.org/blue/organizations/jenkins/CouchDB/activity
 
diff --git a/Jenkinsfile b/build-aux/Jenkinsfile.full
similarity index 96%
rename from Jenkinsfile
rename to build-aux/Jenkinsfile.full
index b98b47a..26f4056 100644
--- a/Jenkinsfile
+++ b/build-aux/Jenkinsfile.full
@@ -77,7 +77,7 @@ pipeline {
         // npm config cache below is required because /home/jenkins doesn't
         // ACTUALLY exist in the image
         docker {
-          image 'couchdbdev/debian-stretch-erlang-19.3.6:latest'
+          image 'couchdbdev/debian-stretch-erlang-20.3.8.24:latest'
           alwaysPull true
           args '-e npm_config_cache=npm-cache -e HOME=. -v=/etc/passwd:/etc/passwd -v /etc/group:/etc/group'
           label 'ubuntu'
@@ -156,7 +156,7 @@ pipeline {
         stage('CentOS 6') {
           agent {
             docker {
-              image 'couchdbdev/centos-6-erlang-19.3.6:latest'
+              image 'couchdbdev/centos-6-erlang-20.3.8.24:latest'
               alwaysPull true
               label 'ubuntu'
               // this keeps builds landing on the same host from clashing with each other
@@ -204,7 +204,7 @@ pipeline {
         stage('CentOS 7') {
           agent {
             docker {
-              image 'couchdbdev/centos-7-erlang-19.3.6:latest'
+              image 'couchdbdev/centos-7-erlang-20.3.8.24:latest'
               alwaysPull true
               label 'ubuntu'
               customWorkspace pwd() + '/centos7'
@@ -252,7 +252,7 @@ pipeline {
         stage('Ubuntu Xenial') {
           agent {
             docker {
-              image 'couchdbdev/ubuntu-xenial-erlang-19.3.6:latest'
+              image 'couchdbdev/ubuntu-xenial-erlang-20.3.8.24:latest'
               alwaysPull true
               label 'ubuntu'
               customWorkspace pwd() + '/xenial'
@@ -299,7 +299,7 @@ pipeline {
         stage('Ubuntu Bionic') {
           agent {
             docker {
-              image 'couchdbdev/ubuntu-bionic-erlang-19.3.6:latest'
+              image 'couchdbdev/ubuntu-bionic-erlang-20.3.8.24:latest'
               alwaysPull true
               label 'ubuntu'
               customWorkspace pwd() + '/bionic'
@@ -346,7 +346,7 @@ pipeline {
         stage('Debian Jessie') {
           agent {
             docker {
-              image 'couchdbdev/debian-jessie-erlang-19.3.6:latest'
+              image 'couchdbdev/debian-jessie-erlang-20.3.8.24:latest'
               alwaysPull true
               label 'ubuntu'
               customWorkspace pwd() + '/jessie'
@@ -393,7 +393,7 @@ pipeline {
         stage('Debian Stretch x86_64') {
           agent {
             docker {
-              image 'couchdbdev/debian-stretch-erlang-19.3.6:latest'
+              image 'couchdbdev/debian-stretch-erlang-20.3.8.24:latest'
               alwaysPull true
               label 'ubuntu'
               customWorkspace pwd() + '/stretch'
@@ -497,7 +497,7 @@ pipeline {
 
       agent {
         docker {
-          image 'couchdbdev/debian-stretch-erlang-19.3.6:latest'
+          image 'couchdbdev/debian-stretch-erlang-20.3.8.24:latest'
           alwaysPull true
           args '-e npm_config_cache=npm-cache -e HOME=. -v=/etc/passwd:/etc/passwd -v /etc/group:/etc/group'
           label 'ubuntu'
diff --git a/build-aux/Jenkinsfile.pr b/build-aux/Jenkinsfile.pr
new file mode 100644
index 0000000..a0ff5b1
--- /dev/null
+++ b/build-aux/Jenkinsfile.pr
@@ -0,0 +1,255 @@
+#!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.
+
+// DRYing out the Jenkinsfile...
+
+build_and_test = '''
+mkdir -p ${COUCHDB_IO_LOG_DIR}
+rm -rf build
+mkdir build
+cd build
+tar -xf ${WORKSPACE}/apache-couchdb-*.tar.gz
+cd apache-couchdb-*
+. /usr/local/kerl/${KERL_VER}/activate
+./configure --with-curl
+make check || (build-aux/logfile-uploader.py && false)
+'''
+
+make_packages = '''
+git clone https://github.com/apache/couchdb-pkg
+rm -rf couchdb
+mkdir couchdb
+cp ${WORKSPACE}/apache-couchdb-*.tar.gz couchdb
+tar -xf ${WORKSPACE}/apache-couchdb-*.tar.gz -C couchdb
+cd couchdb-pkg
+make ${platform} PLATFORM=${platform}
+'''
+
+cleanup_and_save = '''
+rm -rf ${WORKSPACE}/pkgs/${platform}
+mkdir -p ${WORKSPACE}/pkgs/${platform}
+mv ${WORKSPACE}/rpmbuild/RPMS/$(arch)/*rpm ${WORKSPACE}/pkgs/${platform} || true
+mv ${WORKSPACE}/couchdb/*.deb ${WORKSPACE}/pkgs/${platform} || true
+'''
+
+
+pipeline {
+
+  // no top-level agent; agents must be declared for each stage
+  agent any
+
+  environment {
+    COUCHAUTH = credentials('couchdb_vm2_couchdb')
+    recipient = 'notifications@couchdb.apache.org'
+    COUCHDB_IO_LOG_DIR = '/tmp/couchjslogs'
+    // Following fix an issue with git <= 2.6.5 where no committer
+    // name or email are present for reflog, required for git clone
+    GIT_COMMITTER_NAME = 'Jenkins User'
+    GIT_COMMITTER_EMAIL = 'couchdb@apache.org'
+    LOW_ERLANG_VER = '20.3.8.11'
+    MID_ERLANG_VER = '20.3.8.24'
+    HIGH_ERLANG_VER = '22.2'
+  }
+
+  options {
+    buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
+    // This fails the build immediately if any parallel step fails
+    parallelsAlwaysFailFast()
+    preserveStashes(buildCount: 10)
+    timeout(time: 3, unit: 'HOURS')
+    timestamps()
+  }
+
+  stages {
+    stage('Build Release Tarball') {
+      agent {
+        // https://github.com/jenkins-infra/jenkins.io/blob/master/Jenkinsfile#64
+        // We need the jenkins user mapped inside of the image
+        // npm config cache below is required because /home/jenkins doesn't
+        // ACTUALLY exist in the image
+        docker {
+          image 'couchdbdev/debian-buster-erlang-all:latest'
+          alwaysPull true
+          args '-e npm_config_cache=npm-cache -e HOME=. -v=/etc/passwd:/etc/passwd -v /etc/group:/etc/group'
+          customWorkspace pwd() + '/TARBALL'
+        }
+      }
+      options {
+        timeout(time: 15, unit: "MINUTES")
+      }
+      steps {
+        sh '''
+          set
+          rm -rf apache-couchdb-*
+	  . /usr/local/kerl/${LOW_ERLANG_VER}/activate
+          ./configure --with-curl
+          make dist
+          chmod -R a+w * .
+        '''
+      }
+      post {
+        success {
+          stash includes: 'apache-couchdb-*.tar.gz', name: 'tarball'
+          archiveArtifacts artifacts: 'apache-couchdb-*.tar.gz', fingerprint: true
+        }
+        cleanup {
+          // UGH see https://issues.jenkins-ci.org/browse/JENKINS-41894
+          sh 'rm -rf ${WORKSPACE}/*'
+        }
+      }
+    } // stage Build Release Tarball
+
+    // TODO Rework once Improved Docker Pipeline Engine is released
+    // https://issues.jenkins-ci.org/browse/JENKINS-47962
+    // https://issues.jenkins-ci.org/browse/JENKINS-48050
+
+    stage('make check') {
+
+      parallel {
+
+        stage("Low") {
+          agent {
+            docker {
+              image 'couchdbdev/debian-buster-erlang-all:latest'
+              alwaysPull true
+              customWorkspace pwd() + '/LOW'
+            }
+          }
+	  environment {
+	    KERL_VER = "${env.LOW_ERLANG_VER}"
+	  }
+          options {
+            skipDefaultCheckout()
+            timeout(time: 90, unit: "MINUTES")
+          }
+          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'
+                }
+              }
+            }
+          } // stages
+          post {
+            cleanup {
+              sh 'rm -rf ${WORKSPACE}/*'
+            }
+          } // post
+        } // stage
+
+        stage("Mid") {
+          agent {
+            docker {
+              image 'couchdbdev/debian-buster-erlang-all:latest'
+              alwaysPull true
+              customWorkspace pwd() + '/MID'
+            }
+          }
+	  environment {
+	    KERL_VER = "${env.MID_ERLANG_VER}"
+	  }
+          options {
+            skipDefaultCheckout()
+            timeout(time: 90, unit: "MINUTES")
+          }
+          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'
+                }
+              }
+            }
+          } // stages
+          post {
+            cleanup {
+              sh 'rm -rf ${WORKSPACE}/*'
+            }
+          } // post
+        } // stage
+
+        stage("High") {
+          agent {
+            docker {
+              image 'couchdbdev/debian-buster-erlang-all:latest'
+              alwaysPull true
+              customWorkspace pwd() + '/HIGH'
+            }
+          }
+	  environment {
+	    KERL_VER = "${env.HIGH_ERLANG_VER}"
+	  }
+          options {
+            skipDefaultCheckout()
+            timeout(time: 90, unit: "MINUTES")
+          }
+          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'
+                }
+              }
+            }
+          } // stages
+          post {
+            cleanup {
+              sh 'rm -rf ${WORKSPACE}/*'
+            }
+          } // post
+        } // stage
+
+      } // parallel
+    } // stage "Make Check"
+  } // stages
+
+  post {
+    success {
+      mail to: "${env.recipient}",
+        replyTo: "${env.recipient}",
+        subject: "[Jenkins] SUCCESS: ${currentBuild.fullDisplayName}",
+        body: "PR passed. ${env.RUN_DISPLAY_URL}"
+    }
+    unstable {
+      mail to: "${env.recipient}",
+        replyTo: "${env.recipient}",
+        subject: "[Jenkins] SUCCESS: ${currentBuild.fullDisplayName}",
+        body: "Eep! PR is unstable... ${env.RUN_DISPLAY_URL}"
+    }
+    failure {
+      mail to: "${env.recipient}",
+        replyTo: "${env.recipient}",
+        subject: "[Jenkins] FAILURE: ${currentBuild.fullDisplayName}",
+        body: "PR failed. ${env.RUN_DISPLAY_URL}"
+    }
+    cleanup {
+      sh 'rm -rf ${COUCHDB_IO_LOG_DIR}'
+    }
+  }
+
+} // pipeline