Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9C7034AB1 for ; Tue, 17 May 2011 16:19:17 +0000 (UTC) Received: (qmail 55319 invoked by uid 500); 17 May 2011 16:19:17 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 55270 invoked by uid 500); 17 May 2011 16:19:17 -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 55263 invoked by uid 500); 17 May 2011 16:19:17 -0000 Delivered-To: apmail-incubator-couchdb-commits@incubator.apache.org Received: (qmail 55260 invoked by uid 99); 17 May 2011 16:19:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 May 2011 16:19:17 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.131] (HELO eos.apache.org) (140.211.11.131) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 May 2011 16:19:16 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 567B4C2C; Tue, 17 May 2011 16:18:56 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Apache Wiki To: Apache Wiki Date: Tue, 17 May 2011 16:18:56 -0000 Message-ID: <20110517161856.10433.54393@eos.apache.org> Subject: =?utf-8?q?=5BCouchdb_Wiki=5D_Update_of_=22Test=5Fprocedure=22_by_NoahSlat?= =?utf-8?q?er?= Dear Wiki user, You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for c= hange notification. The "Test_procedure" page has been changed by NoahSlater. http://wiki.apache.org/couchdb/Test_procedure -------------------------------------------------- New page: =3D=3D Testing a Source Release =3D=3D Any Apache CouchDB user is free to test a source release, and in fact we en= courage you to do so! =3D=3D=3D Setting Up =3D=3D=3D Create a new temporary directory to work in: {{{ mkdir /tmp/couchdb }}} You can remove this directory and all of its contents when you're done. =3D=3D=3D Checking out the tag =3D=3D=3D You should have a copy of the vote email with links to the tag directory. It will look a bit like this: http://svn.apache.org/repos/asf/couchdb/tags/1.1.0 Obviously, the `1.1.0` bit will change between releases. Create a new temporary directory: {{{ mkdir /tmp/couchdb/tag }}} Export this into your temporary directory: {{{ svn export http://svn.apache.org/repos/asf/couchdb/tags/1.1.0 /tmp/couchdb/= tag/1.1.0 }}} =3D=3D=3D Downloading the Release Artefacts =3D=3D=3D You should have a copy of the vote email with links to the committer's `dis= t` directory. It will look a bit like this: http://people.apache.org/~rnewson/dist/1.1.0/ Obviously, the `1.1.0` bit will change between releases. In this directory, you will find four files that look like this: * apache-couchdb-1.1.0.tar.gz = * apache-couchdb-1.1.0.tar.gz.asc * apache-couchdb-1.1.0.tar.gz.md5 * apache-couchdb-1.1.0.tar.gz.sha You should now create a another temporary directory: {{{ mkdir /tmp/couchdb/dist = }}} Change into it: {{{ cd /tmp/couchdb/dist }}} And then download these files: {{{ wget http://people.apache.org/~rnewson/dist/1.1.0/apache-couchdb-1.1.0.tar.= gz wget http://people.apache.org/~rnewson/dist/1.1.0/apache-couchdb-1.1.0.tar.= gz.asc wget http://people.apache.org/~rnewson/dist/1.1.0/apache-couchdb-1.1.0.tar.= gz.md5 wget http://people.apache.org/~rnewson/dist/1.1.0/apache-couchdb-1.1.0.tar.= gz.sha }}} If you don't have `wget` installed, you can use `curl -O` which should do t= he same thing.