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 D151D200BCD for ; Sun, 27 Nov 2016 08:51:16 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id CFEFD160B12; Sun, 27 Nov 2016 07:51:16 +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 21C0B160AFC for ; Sun, 27 Nov 2016 08:51:15 +0100 (CET) Received: (qmail 90945 invoked by uid 500); 27 Nov 2016 07:51:15 -0000 Mailing-List: contact commits-help@quickstep.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@quickstep.incubator.apache.org Delivered-To: mailing list commits@quickstep.incubator.apache.org Received: (qmail 90935 invoked by uid 99); 27 Nov 2016 07:51:15 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 27 Nov 2016 07:51:15 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id C9391C0C21 for ; Sun, 27 Nov 2016 07:51:14 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -6.219 X-Spam-Level: X-Spam-Status: No, score=-6.219 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id 9WFUOz4CqxDD for ; Sun, 27 Nov 2016 07:51:11 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 641325F54E for ; Sun, 27 Nov 2016 07:51:10 +0000 (UTC) Received: (qmail 90908 invoked by uid 99); 27 Nov 2016 07:51:09 -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; Sun, 27 Nov 2016 07:51:09 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 83F87E36CA; Sun, 27 Nov 2016 07:51:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: zuyuz@apache.org To: commits@quickstep.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-quickstep git commit: Added back the debug build with llvm. Date: Sun, 27 Nov 2016 07:51:09 +0000 (UTC) archived-at: Sun, 27 Nov 2016 07:51:17 -0000 Repository: incubator-quickstep Updated Branches: refs/heads/master 3047d89ab -> a31dde4ea Added back the debug build with llvm. Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/a31dde4e Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/a31dde4e Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/a31dde4e Branch: refs/heads/master Commit: a31dde4eaab6122768e21812b958a05d3048e50f Parents: 3047d89 Author: Zuyu Zhang Authored: Fri Nov 25 21:52:43 2016 -0800 Committer: Zuyu Zhang Committed: Sat Nov 26 23:49:57 2016 -0800 ---------------------------------------------------------------------- .travis.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/a31dde4e/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 9b43b16..8915eeb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ -# NOTE(quickstep-team): In Travis-CI, jobs timeout if they take more than 120 +# NOTE(quickstep-team): In Travis-CI, jobs timeout if they take more than 50 # mins or if there is no log output for more than 10 mins. Hence, we use -O0 to # speed up compilation in release build. Also, jobs can only use upto 20GB of # disk space. Hence, we minimize the amount of debug symbol using -g0 (DEBUG @@ -15,9 +15,18 @@ compiler: - clang env: + - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions + - BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=selection - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions - BUILD_TYPE=Release VECTOR_COPY_ELISION_LEVEL=selection +matrix: + exclude: # Due to time-out. + - compiler: gcc + env: BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=joinwithbinaryexpressions + - compiler: gcc + env: BUILD_TYPE=Debug VECTOR_COPY_ELISION_LEVEL=selection + install: - export TEST_JOBS=2; - if [ "$CC" = "gcc" ]; then