Return-Path: Delivered-To: apmail-forrest-svn-archive@www.apache.org Received: (qmail 85166 invoked from network); 8 Jan 2008 04:27:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Jan 2008 04:27:39 -0000 Received: (qmail 24664 invoked by uid 500); 8 Jan 2008 04:27:28 -0000 Delivered-To: apmail-forrest-svn-archive@forrest.apache.org Received: (qmail 24632 invoked by uid 500); 8 Jan 2008 04:27:28 -0000 Mailing-List: contact svn-help@forrest.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Forrest Developers List" List-Id: Delivered-To: mailing list svn@forrest.apache.org Received: (qmail 24623 invoked by uid 99); 8 Jan 2008 04:27:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Jan 2008 20:27:28 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jan 2008 04:27:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5DE2B1A9896; Mon, 7 Jan 2008 20:27:06 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r609866 - /forrest/zone/config/update-forrest-trunk.sh Date: Tue, 08 Jan 2008 04:27:06 -0000 To: svn@forrest.apache.org From: crossley@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080108042706.5DE2B1A9896@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: crossley Date: Mon Jan 7 20:27:05 2008 New Revision: 609866 URL: http://svn.apache.org/viewvc?rev=609866&view=rev Log: Add some datestamps so that we can see why 'svn update' and 'build' is so slow on helios. Modified: forrest/zone/config/update-forrest-trunk.sh Modified: forrest/zone/config/update-forrest-trunk.sh URL: http://svn.apache.org/viewvc/forrest/zone/config/update-forrest-trunk.sh?rev=609866&r1=609865&r2=609866&view=diff ============================================================================== --- forrest/zone/config/update-forrest-trunk.sh (original) +++ forrest/zone/config/update-forrest-trunk.sh Mon Jan 7 20:27:05 2008 @@ -56,6 +56,7 @@ fi echo >> $logfile +date >> $logfile echo "Do build clean ..." >> $logfile cd main ./build.sh clean >> $logfile 2>&1 @@ -66,6 +67,7 @@ fi echo >> $logfile +date >> $logfile echo "Do build ..." >> $logfile 2>&1 ./build.sh >> $logfile 2>&1 statusBuild=$? @@ -74,3 +76,7 @@ if [ ! $statusBuild ]; then sendMsg "build failed" fi + +echo >> $logfile +date >> $logfile +echo "Finished" >> $logfile