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 4661E200B66 for ; Thu, 4 Aug 2016 01:45:37 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 45239160A8C; Wed, 3 Aug 2016 23:45:37 +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 8E028160A86 for ; Thu, 4 Aug 2016 01:45:36 +0200 (CEST) Received: (qmail 79663 invoked by uid 500); 3 Aug 2016 23:45:35 -0000 Mailing-List: contact commits-help@parquet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@parquet.apache.org Delivered-To: mailing list commits@parquet.apache.org Received: (qmail 79654 invoked by uid 99); 3 Aug 2016 23:45:35 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Aug 2016 23:45:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 89115E3839; Wed, 3 Aug 2016 23:45:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wesm@apache.org To: commits@parquet.apache.org Message-Id: <53eaf58e45734d48838a1bffd7fb6f7e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: parquet-cpp git commit: PARQUET-672: Build dev binary artifacts in debug mode Date: Wed, 3 Aug 2016 23:45:35 +0000 (UTC) archived-at: Wed, 03 Aug 2016 23:45:37 -0000 Repository: parquet-cpp Updated Branches: refs/heads/master 38f0ffd5a -> c2e5f08cb PARQUET-672: Build dev binary artifacts in debug mode I will move these builds to conda-forge as soon as possible so we aren't overly reliant on the Travis master builds for development of Apache Arrow Author: Wes McKinney Closes #141 from wesm/PARQUET-672 and squashes the following commits: 09287bf [Wes McKinney] Set conda dev artifact build to debug type Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/c2e5f08c Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/c2e5f08c Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/c2e5f08c Branch: refs/heads/master Commit: c2e5f08cbefc3326535ef0ee99812b5123754d37 Parents: 38f0ffd Author: Wes McKinney Authored: Wed Aug 3 16:43:39 2016 -0700 Committer: Wes McKinney Committed: Wed Aug 3 16:43:39 2016 -0700 ---------------------------------------------------------------------- conda.recipe/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/c2e5f08c/conda.recipe/build.sh ---------------------------------------------------------------------- diff --git a/conda.recipe/build.sh b/conda.recipe/build.sh index 2e7b1c6..7fe8f91 100644 --- a/conda.recipe/build.sh +++ b/conda.recipe/build.sh @@ -50,7 +50,7 @@ source thirdparty/versions.sh export GTEST_HOME=`pwd`/thirdparty/$GTEST_BASEDIR cmake \ - -DCMAKE_BUILD_TYPE=release \ + -DCMAKE_BUILD_TYPE=debug \ -DCMAKE_INSTALL_PREFIX=$PREFIX \ -DPARQUET_BUILD_BENCHMARKS=off \ ..