You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2019/08/01 12:29:41 UTC

[couchdb] branch jenkins-junit-reports-and-jenkins-env updated: See if the problem is unique to freebsd

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

kocolosk pushed a commit to branch jenkins-junit-reports-and-jenkins-env
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/jenkins-junit-reports-and-jenkins-env by this push:
     new 4bc1498  See if the problem is unique to freebsd
4bc1498 is described below

commit 4bc1498f6611f2d7cd8569a919ffa34f8941113c
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Thu Aug 1 08:29:24 2019 -0400

    See if the problem is unique to freebsd
---
 Jenkinsfile | 86 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 43 insertions(+), 43 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index c3fa950..361cc8a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -125,49 +125,49 @@ pipeline {
 
       parallel {
 
-        stage('FreeBSD') {
-          agent {
-            label 'couchdb && freebsd'
-          }
-          options {
-            skipDefaultCheckout()
-            timeout(time: 90, unit: "MINUTES")
-          }
-          steps {
-            // deleteDir is OK here because we're not inside of a Docker container!
-            deleteDir()
-            unstash 'tarball'
-            withEnv(['HOME='+pwd(), 'BUILDDIR='+pwd(tmp: true)]) {
-              sh '''
-                mkdir -p $COUCHDB_IO_LOG_DIR
-
-                env
-
-                # Build CouchDB from tarball & test
-                cd ${BUILDDIR}
-                mkdir -p build
-                cd build
-                tar -xf $WORKSPACE/apache-couchdb-*.tar.gz
-                cd apache-couchdb-*
-                ./configure --with-curl
-                gmake eunit || (build-aux/logfile-uploader.py && false)
-
-                find . -name "*.xml"
-
-                # No package build for FreeBSD at this time
-              '''
-            } // withEnv
-          } // steps
-          post {
-            always {
-              junit '${BUILDDIR}/build/apache-couchdb-*/src/*/.eunit/*.xml'
-              junit '${BUILDDIR}/build/apache-couchdb-*/_build/*/lib/couchdbtest/*.xml'
-            }
-            cleanup {
-              sh 'rm -rf ${BUILDDIR} ${COUCHDB_IO_LOG_DIR}'
-            }
-          } // post
-        } // stage FreeBSD
+        // stage('FreeBSD') {
+        //   agent {
+        //     label 'couchdb && freebsd'
+        //   }
+        //   options {
+        //     skipDefaultCheckout()
+        //     timeout(time: 90, unit: "MINUTES")
+        //   }
+        //   steps {
+        //     // deleteDir is OK here because we're not inside of a Docker container!
+        //     deleteDir()
+        //     unstash 'tarball'
+        //     withEnv(['HOME='+pwd()]) {
+        //       sh '''
+        //         mkdir -p $COUCHDB_IO_LOG_DIR
+
+        //         env
+
+        //         # Build CouchDB from tarball & test
+        //         cd ${BUILDDIR}
+        //         mkdir -p build
+        //         cd build
+        //         tar -xf $WORKSPACE/apache-couchdb-*.tar.gz
+        //         cd apache-couchdb-*
+        //         ./configure --with-curl
+        //         gmake eunit || (build-aux/logfile-uploader.py && false)
+
+        //         find . -name "*.xml"
+
+        //         # No package build for FreeBSD at this time
+        //       '''
+        //     } // withEnv
+        //   } // steps
+        //   post {
+        //     always {
+        //       junit '${BUILDDIR}/build/apache-couchdb-*/src/*/.eunit/*.xml'
+        //       junit '${BUILDDIR}/build/apache-couchdb-*/_build/*/lib/couchdbtest/*.xml'
+        //     }
+        //     cleanup {
+        //       sh 'rm -rf ${BUILDDIR} ${COUCHDB_IO_LOG_DIR}'
+        //     }
+        //   } // post
+        // } // stage FreeBSD
 
         stage('CentOS 6') {
           agent {