Return-Path: X-Original-To: apmail-spark-commits-archive@minotaur.apache.org Delivered-To: apmail-spark-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D6A56119A8 for ; Thu, 3 Apr 2014 23:53:39 +0000 (UTC) Received: (qmail 31197 invoked by uid 500); 3 Apr 2014 23:53:39 -0000 Delivered-To: apmail-spark-commits-archive@spark.apache.org Received: (qmail 31152 invoked by uid 500); 3 Apr 2014 23:53:38 -0000 Mailing-List: contact commits-help@spark.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@spark.apache.org Delivered-To: mailing list commits@spark.apache.org Received: (qmail 31144 invoked by uid 99); 3 Apr 2014 23:53:38 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Apr 2014 23:53:38 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 5AACD93D855; Thu, 3 Apr 2014 23:53:38 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rxin@apache.org To: commits@spark.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: Fix jenkins from giving the green light to builds that don't compile. Date: Thu, 3 Apr 2014 23:53:38 +0000 (UTC) Repository: spark Updated Branches: refs/heads/master d94826be6 -> 9231b011a Fix jenkins from giving the green light to builds that don't compile. Adding `| grep` swallows the non-zero return code from sbt failures. See [here](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/13735/consoleFull) for a Jenkins run that fails to compile, but still gets a green light. Note the [BUILD FIX] commit isn't actually part of this PR, but github is out of date. Author: Michael Armbrust Closes #317 from marmbrus/fixJenkins and squashes the following commits: 7c77ff9 [Michael Armbrust] Remove output filter that was swallowing non-zero exit codes for test failures. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/9231b011 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/9231b011 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/9231b011 Branch: refs/heads/master Commit: 9231b011a9ba5a2b25bd3d1a68be7d1a7cb735da Parents: d94826b Author: Michael Armbrust Authored: Thu Apr 3 16:53:35 2014 -0700 Committer: Reynold Xin Committed: Thu Apr 3 16:53:35 2014 -0700 ---------------------------------------------------------------------- dev/run-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/9231b011/dev/run-tests ---------------------------------------------------------------------- diff --git a/dev/run-tests b/dev/run-tests index a6fcc40..fff949e 100755 --- a/dev/run-tests +++ b/dev/run-tests @@ -49,7 +49,7 @@ dev/scalastyle echo "=========================================================================" echo "Running Spark unit tests" echo "=========================================================================" -sbt/sbt assembly test | grep -v -e "info.*Resolving" -e "warn.*Merging" -e "info.*Including" +sbt/sbt assembly test echo "=========================================================================" echo "Running PySpark tests"