summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Kocoloski <kocolosk@apache.org>2019-11-05 16:37:50 +0000
committerAdam Kocoloski <kocolosk@apache.org>2019-11-05 16:39:17 +0000
commit946ed2f903ece8e4e2f2405d7c5d2ee68d0a6925 (patch)
treec1f9572d3c28f34e59ffee1af0eee58209fb1585
parentd60551d89100dccb5c649dd6cad3b7c7ec1371e0 (diff)
downloadcouchdb-temporarily-disable-freebsd-builds.tar.gz
Temporarily disable FreeBSD buildstemporarily-disable-freebsd-builds
See #2301.
-rw-r--r--Jenkinsfile75
1 files changed, 38 insertions, 37 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 342ac6c83..dd1efc5b2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -115,43 +115,44 @@ 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()]) {
- sh '''
- mkdir -p $COUCHDB_IO_LOG_DIR
-
- # Build CouchDB from tarball & test
- mkdir build
- cd build
- tar -xf $WORKSPACE/apache-couchdb-*.tar.gz
- cd apache-couchdb-*
- ./configure --with-curl
- gmake check || (build-aux/logfile-uploader.py && false)
-
- # No package build for FreeBSD at this time
- '''
- } // withEnv
- } // steps
- post {
- always {
- junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml'
- }
- cleanup {
- sh 'rm -rf $COUCHDB_IO_LOG_DIR'
- }
- } // post
- } // stage FreeBSD
+ // See https://github.com/apache/couchdb/issues/2301
+ // 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
+
+ // # Build CouchDB from tarball & test
+ // mkdir build
+ // cd build
+ // tar -xf $WORKSPACE/apache-couchdb-*.tar.gz
+ // cd apache-couchdb-*
+ // ./configure --with-curl
+ // gmake check || (build-aux/logfile-uploader.py && false)
+
+ // # No package build for FreeBSD at this time
+ // '''
+ // } // withEnv
+ // } // steps
+ // post {
+ // always {
+ // junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml'
+ // }
+ // cleanup {
+ // sh 'rm -rf $COUCHDB_IO_LOG_DIR'
+ // }
+ // } // post
+ // } // stage FreeBSD
stage('CentOS 6') {
agent {