From patchwork Tue Sep 29 17:55:26 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniele Di Proietto X-Patchwork-Id: 523971 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from archives.nicira.com (li376-54.members.linode.com [96.126.127.54]) by ozlabs.org (Postfix) with ESMTP id E95F9140082 for ; Wed, 30 Sep 2015 03:55:36 +1000 (AEST) Received: from archives.nicira.com (localhost [127.0.0.1]) by archives.nicira.com (Postfix) with ESMTP id B2C74105C5; Tue, 29 Sep 2015 10:55:35 -0700 (PDT) X-Original-To: dev@openvswitch.org Delivered-To: dev@openvswitch.org Received: from mx1e4.cudamail.com (mx1.cudamail.com [69.90.118.67]) by archives.nicira.com (Postfix) with ESMTPS id 39B921059C for ; Tue, 29 Sep 2015 10:55:34 -0700 (PDT) Received: from bar5.cudamail.com (unknown [192.168.21.12]) by mx1e4.cudamail.com (Postfix) with ESMTPS id 9FB641E01D1 for ; Tue, 29 Sep 2015 11:55:33 -0600 (MDT) X-ASG-Debug-ID: 1443549333-09eadd11e46b6120001-byXFYA Received: from mx1-pf1.cudamail.com ([192.168.24.1]) by bar5.cudamail.com with ESMTP id xfr9kzHmoshDfnwm (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 29 Sep 2015 11:55:33 -0600 (MDT) X-Barracuda-Envelope-From: diproiettod@vmware.com X-Barracuda-RBL-Trusted-Forwarder: 192.168.24.1 Received: from unknown (HELO smtp-outbound-1.vmware.com) (208.91.2.12) by mx1-pf1.cudamail.com with ESMTPS (DHE-RSA-AES256-SHA encrypted); 29 Sep 2015 17:55:32 -0000 Received-SPF: pass (mx1-pf1.cudamail.com: SPF record at _spf.vmware.com designates 208.91.2.12 as permitted sender) X-Barracuda-Apparent-Source-IP: 208.91.2.12 X-Barracuda-RBL-IP: 208.91.2.12 Received: from sc9-mailhost3.vmware.com (sc9-mailhost3.vmware.com [10.113.161.73]) by smtp-outbound-1.vmware.com (Postfix) with ESMTP id A7CF3289A1 for ; Tue, 29 Sep 2015 10:55:32 -0700 (PDT) Received: from diproiettod-dev.eng.vmware.com (unknown [10.20.208.183]) by sc9-mailhost3.vmware.com (Postfix) with ESMTP id 7CC0B4068A; Tue, 29 Sep 2015 10:55:31 -0700 (PDT) X-CudaMail-Envelope-Sender: diproiettod@vmware.com From: Daniele Di Proietto To: dev@openvswitch.org X-CudaMail-Whitelist-To: dev@openvswitch.org X-CudaMail-MID: CM-E1-928072848 X-CudaMail-DTE: 092915 X-CudaMail-Originating-IP: 208.91.2.12 Date: Tue, 29 Sep 2015 18:55:26 +0100 X-ASG-Orig-Subj: [##CM-E1-928072848##][PATCH] travis: Install `bc` utility for kernel compilation Message-Id: <1443549326-945-1-git-send-email-diproiettod@vmware.com> X-Mailer: git-send-email 2.1.4 X-Barracuda-Connect: UNKNOWN[192.168.24.1] X-Barracuda-Start-Time: 1443549333 X-Barracuda-Encrypted: DHE-RSA-AES256-SHA X-Barracuda-URL: https://web.cudamail.com:443/cgi-mod/mark.cgi X-ASG-Whitelist: Header =?UTF-8?B?eFwtY3VkYW1haWxcLXdoaXRlbGlzdFwtdG8=?= X-Virus-Scanned: by bsmtpd at cudamail.com X-Barracuda-BRTS-Status: 1 X-ASG-Whitelist: EmailCat (corporate) Subject: [ovs-dev] [PATCH] travis: Install `bc` utility for kernel compilation X-BeenThere: dev@openvswitch.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dev-bounces@openvswitch.org Sender: "dev" Newer kernels appear to require `bc` to build all the headers Also, alphabetize the package list Tested-at: https://travis-ci.org/ddiproietto/ovs/builds/82757574 Signed-off-by: Daniele Di Proietto Acked-by: Ben Pfaff --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1c11bb5..30b8713 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,9 +6,10 @@ compiler: addons: apt: packages: + - bc + - gcc-multilib - libssl-dev - llvm-dev - - gcc-multilib before_install: ./.travis/prepare.sh