From patchwork Wed Oct 26 17:05:35 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Warren X-Patchwork-Id: 687252 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3t3xJB1fPxz9t0v for ; Thu, 27 Oct 2016 04:06:34 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 331EAA7593; Wed, 26 Oct 2016 19:06:27 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H2bIsNwNN5en; Wed, 26 Oct 2016 19:06:26 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0294CA75C9; Wed, 26 Oct 2016 19:06:16 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 68ECEA7579 for ; Wed, 26 Oct 2016 19:06:07 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XnaTKt8rTWZr for ; Wed, 26 Oct 2016 19:06:07 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from avon.wwwdotorg.org (avon.wwwdotorg.org [70.85.31.133]) by theia.denx.de (Postfix) with ESMTPS id 2A222A754C for ; Wed, 26 Oct 2016 19:06:05 +0200 (CEST) Received: from swarren-lx1.nvidia.com (thunderhill.nvidia.com [216.228.112.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by avon.wwwdotorg.org (Postfix) with ESMTPSA id 587A21C1159; Wed, 26 Oct 2016 11:06:04 -0600 (MDT) X-Virus-Status: Clean X-Virus-Scanned: clamav-milter 0.99.2 at avon.wwwdotorg.org From: Stephen Warren To: Tom Rini Date: Wed, 26 Oct 2016 11:05:35 -0600 Message-Id: <20161026170536.2367-5-swarren@wwwdotorg.org> X-Mailer: git-send-email 2.10.1 In-Reply-To: <20161026170536.2367-1-swarren@wwwdotorg.org> References: <20161026170536.2367-1-swarren@wwwdotorg.org> X-NVConfidentiality: public Cc: u-boot@lists.denx.de, Stephen Warren Subject: [U-Boot] [PATCH 5/6] travis-ci: don't invoke exit on success X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" From: Stephen Warren Invoking exit prevents any subsequent build commands from running, and future patches will add extra commands. Signed-off-by: Stephen Warren Reviewed-by: Heiko Schocher --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6e72e0bb233f..a537f0e34dd3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,9 +74,7 @@ script: set +e; tools/buildman/buildman -P ${BUILDMAN}; ret=$?; - if [[ $ret -eq 0 || $ret -eq 129 ]]; then - exit 0; - else + if [[ $ret -ne 0 && $ret -ne 129 ]]; then exit $ret; fi; fi