Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 8D324200CA8 for ; Thu, 15 Jun 2017 22:52:34 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8BF0E160BDF; Thu, 15 Jun 2017 20:52:34 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D284C160BC9 for ; Thu, 15 Jun 2017 22:52:33 +0200 (CEST) Received: (qmail 18305 invoked by uid 500); 15 Jun 2017 20:52:33 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 18296 invoked by uid 99); 15 Jun 2017 20:52:33 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jun 2017 20:52:33 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 49B0381194; Thu, 15 Jun 2017 20:52:32 +0000 (UTC) Date: Thu, 15 Jun 2017 20:52:32 +0000 To: "commits@couchdb.apache.org" Subject: [couchdb] branch jenkins-pipeline updated: Debug OS process IO logs uploading MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <149755995220.8676.9842212539064560910@gitbox.apache.org> From: vatamane@apache.org Reply-To: "commits@couchdb.apache.org" X-Git-Host: gitbox.apache.org X-Git-Repo: couchdb X-Git-Refname: refs/heads/jenkins-pipeline X-Git-Reftype: branch X-Git-Oldrev: cbdc0ae803e2b983b0a4e1e46ca0e00f92d3f316 X-Git-Newrev: 5456e1b7fb8ecb139b11391e39884dd2df1cf7e8 X-Git-Rev: 5456e1b7fb8ecb139b11391e39884dd2df1cf7e8 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated archived-at: Thu, 15 Jun 2017 20:52:34 -0000 This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch jenkins-pipeline in repository https://gitbox.apache.org/repos/asf/couchdb.git The following commit(s) were added to refs/heads/jenkins-pipeline by this push: new 5456e1b Debug OS process IO logs uploading 5456e1b is described below commit 5456e1b7fb8ecb139b11391e39884dd2df1cf7e8 Author: Nick Vatamaniuc AuthorDate: Thu Jun 15 16:48:44 2017 -0400 Debug OS process IO logs uploading --- Jenkinsfile | 10 ++++++++++ build-aux/logfile-uploader.py | 1 + 2 files changed, 11 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index e06e457..26373bf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -66,6 +66,7 @@ pipeline { 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 ''' + echo "***** COUCHDB_IO_LOG_DIR: ${COUCHDB_IO_LOG_DIR}" cwd=$(pwd) rm -rf /tmp/couchjslogs mkdir -p /tmp/couchjslogs @@ -89,6 +90,7 @@ pipeline { 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 ''' + echo "***** COUCHDB_IO_LOG_DIR: ${COUCHDB_IO_LOG_DIR}" cwd=$(pwd) rm -rf /tmp/couchjslogs mkdir -p /tmp/couchjslogs @@ -112,6 +114,7 @@ pipeline { 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 ''' + echo "***** COUCHDB_IO_LOG_DIR: ${COUCHDB_IO_LOG_DIR}" cwd=$(pwd) rm -rf /tmp/couchjslogs mkdir -p /tmp/couchjslogs @@ -135,6 +138,7 @@ pipeline { sh 'docker pull couchdbdev/ubuntu-12.04-erlang-18.3' withDockerContainer(image: 'couchdbdev/ubuntu-12.04-erlang-18.3', args: '--user 0:0') { sh ''' + echo "***** COUCHDB_IO_LOG_DIR: ${COUCHDB_IO_LOG_DIR}" cwd=$(pwd) rm -rf /tmp/couchjslogs mkdir -p /tmp/couchjslogs @@ -158,6 +162,7 @@ pipeline { sh 'docker pull couchdbdev/ubuntu-14.04-erlang-default' withDockerContainer(image: 'couchdbdev/ubuntu-14.04-erlang-default', args: '--user 0:0') { sh ''' + echo "***** COUCHDB_IO_LOG_DIR: ${COUCHDB_IO_LOG_DIR}" cwd=$(pwd) rm -rf /tmp/couchjslogs mkdir -p /tmp/couchjslogs @@ -181,6 +186,7 @@ pipeline { sh 'docker pull couchdbdev/ubuntu-14.04-erlang-18.3' withDockerContainer(image: 'couchdbdev/ubuntu-14.04-erlang-18.3', args: '--user 0:0') { sh ''' + echo "***** COUCHDB_IO_LOG_DIR: ${COUCHDB_IO_LOG_DIR}" cwd=$(pwd) rm -rf /tmp/couchjslogs mkdir -p /tmp/couchjslogs @@ -204,6 +210,7 @@ pipeline { sh 'docker pull couchdbdev/ubuntu-16.04-erlang-default' withDockerContainer(image: 'couchdbdev/ubuntu-16.04-erlang-default', args: '--user 0:0') { sh ''' + echo "***** COUCHDB_IO_LOG_DIR: ${COUCHDB_IO_LOG_DIR}" cwd=$(pwd) rm -rf /tmp/couchjslogs mkdir -p /tmp/couchjslogs @@ -227,6 +234,7 @@ pipeline { sh 'docker pull couchdbdev/ubuntu-16.04-erlang-18.3' withDockerContainer(image: 'couchdbdev/ubuntu-16.04-erlang-18.3', args: '--user 0:0') { sh ''' + echo "***** COUCHDB_IO_LOG_DIR: ${COUCHDB_IO_LOG_DIR}" cwd=$(pwd) rm -rf /tmp/couchjslogs mkdir -p /tmp/couchjslogs @@ -250,6 +258,7 @@ pipeline { sh 'docker pull couchdbdev/debian-8-erlang-default' withDockerContainer(image: 'couchdbdev/debian-8-erlang-default', args: '--user 0:0') { sh ''' + echo "***** COUCHDB_IO_LOG_DIR: ${COUCHDB_IO_LOG_DIR}" cwd=$(pwd) rm -rf /tmp/couchjslogs mkdir -p /tmp/couchjslogs @@ -273,6 +282,7 @@ pipeline { sh 'docker pull couchdbdev/debian-8-erlang-18.3' withDockerContainer(image: 'couchdbdev/debian-8-erlang-18.3', args: '--user 0:0') { sh ''' + echo "***** COUCHDB_IO_LOG_DIR: ${COUCHDB_IO_LOG_DIR}" cwd=$(pwd) rm -rf /tmp/couchjslogs mkdir -p /tmp/couchjslogs diff --git a/build-aux/logfile-uploader.py b/build-aux/logfile-uploader.py index 742fc85..8de2b2a 100755 --- a/build-aux/logfile-uploader.py +++ b/build-aux/logfile-uploader.py @@ -43,6 +43,7 @@ def collect_logfiles(): tb.add(log) # couchjs OS process IO logs for log in glob.glob('/tmp/couchjslogs/*'): + print ("Uploading OS process IO log", log) tb.add(log) tb.close() -- To stop receiving notification emails like this one, please contact ['"commits@couchdb.apache.org" '].