From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 91137A04FF; Tue, 17 Dec 2019 16:04:30 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9D01F1BF73; Tue, 17 Dec 2019 16:04:29 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 074D61BF72 for ; Tue, 17 Dec 2019 16:04:27 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Dec 2019 07:04:21 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,325,1571727600"; d="scan'208";a="416865576" Received: from klaatz-mobl1.ger.corp.intel.com (HELO [10.237.221.89]) ([10.237.221.89]) by fmsmga006.fm.intel.com with ESMTP; 17 Dec 2019 07:04:20 -0800 To: Aaron Conole Cc: dev@dpdk.org References: <20191217114259.35575-1-kevin.laatz@intel.com> From: "Laatz, Kevin" Message-ID: Date: Tue, 17 Dec 2019 15:04:19 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US Subject: Re: [dpdk-dev] [PATCH] ci: update travis to use bionic X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 17/12/2019 14:44, Aaron Conole wrote: > Kevin Laatz writes: > >> Currently, the Travis CI is using Ubuntu 16.04 LTS (Xenial) which is >> becoming increasingly outdated. This patch updates Travis to use Ubuntu >> 18.04 LTS (Bionic) which will give us the benefit of more up-to-date >> packages being availble and the newer features that come with them. >> >> Signed-off-by: Kevin Laatz >> --- >> .travis.yml | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/.travis.yml b/.travis.yml >> index 8f90d06f2..6e0626353 100644 >> --- a/.travis.yml >> +++ b/.travis.yml >> @@ -4,7 +4,7 @@ compiler: >> - gcc >> - clang >> >> -dist: xenial >> +dist: bionic > This LGTM. > >> os: >> - linux >> @@ -21,7 +21,7 @@ aarch64_packages: &aarch64_packages >> >> extra_packages: &extra_packages >> - *required_packages >> - - [libbsd-dev, libpcap-dev, libcrypto++-dev, libjansson4] >> + - [libbsd-dev, libpcap-dev, libcrypto++-dev, libjansson4, abigail-tools] > Will adding the abigail-tools automatically invoke the ABI checks? > Otherwise, maybe it's best to save this for a future commit. > > I'll look for the robot build when it comes by. Thanks! Yes, the meson option that will be introduced with the "Add ABI compatibility checks to the meson build" [1] patch set will be set to "auto" meaning the checks will run if abidiff is found. [1] http://patches.dpdk.org/project/dpdk/list/?series=7830 > >> build_32b_packages: &build_32b_packages >> - *required_packages