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 2018/06/27 01:34:45 UTC

[couchdb] branch jenkins-freebsd updated (925c3cb -> 8e0e444)

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

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


 discard 925c3cb  Add regression runs on new dedicated FreeBSD VM
     new 8e0e444  Add regression runs on new dedicated FreeBSD VM

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   (925c3cb)
            \
             N -- N -- N   refs/heads/jenkins-freebsd (8e0e444)

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:
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[couchdb] 01/01: Add regression runs on new dedicated FreeBSD VM

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

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

commit 8e0e4442ecfe3a1286e5a816e96ff483e3ae41bd
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Tue Jun 26 20:45:23 2018 -0400

    Add regression runs on new dedicated FreeBSD VM
    
    Thanks to Just Some Enterprises for donating the compute power!
---
 Jenkinsfile | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index b3cd975..b815dff 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -78,7 +78,29 @@ pipeline {
     // Build packages on supported platforms using esl's erlang
     stage('Test') {
       steps {
-        parallel(centos6: {
+        parallel(freebsd: {
+          node(label: 'couchdb && freebsd') {
+            timeout(time: 60, unit: "MINUTES") {
+              unstash 'tarball'
+              sh '''
+                cwd=$(pwd)
+                mkdir -p $COUCHDB_IO_LOG_DIR
+
+                # Build CouchDB from tarball & test
+                builddir=$(mktemp -d)
+                cd $builddir
+                tar -xf $cwd/apache-couchdb-*.tar.gz
+                cd apache-couchdb-*
+                ./configure --with-curl
+                make check || (build-aux/logfile-uploader.py && false)
+
+                # No package build for FreeBSD at this time
+              '''
+            } // timeout
+            deleteDir()
+          } // node
+        },
+        centos6: {
           node(label: 'ubuntu') {
             timeout(time: 60, unit: "MINUTES") {
               sh 'docker pull couchdbdev/centos-6-erlang-19.3.6'