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 2F5D7A046B for ; Thu, 9 Jan 2020 14:09:52 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1AC741D501; Thu, 9 Jan 2020 14:09:52 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id B2DF01D501; Thu, 9 Jan 2020 14:09:49 +0100 (CET) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Jan 2020 05:09:48 -0800 X-IronPort-AV: E=Sophos;i="5.69,413,1571727600"; d="scan'208";a="216296176" Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.26]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 09 Jan 2020 05:09:47 -0800 Date: Thu, 9 Jan 2020 13:09:44 +0000 From: Bruce Richardson To: David Marchand Cc: dev@dpdk.org, bluca@debian.org, aconole@redhat.com, stable@dpdk.org, Michael Santana Message-ID: <20200109130944.GC248@bricha3-MOBL.ger.corp.intel.com> References: <20200109125916.32073-1-david.marchand@redhat.com> <20200109125916.32073-2-david.marchand@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200109125916.32073-2-david.marchand@redhat.com> User-Agent: Mutt/1.12.1 (2019-06-15) Subject: Re: [dpdk-stable] [PATCH 2/2] ci: use meson 0.47.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Thu, Jan 09, 2020 at 01:59:16PM +0100, David Marchand wrote: > meson 0.53.0 has a compatibility issue [1] with the python 3.5.2 that comes > in Ubuntu 16.04. > On the other hand, the minimal version supported in dpdk is 0.47.1. > > Stick to this version to avoid getting hit by regressions in meson latest > shiny release. > > 1: https://github.com/mesonbuild/meson/issues/6427 > > Cc: stable@dpdk.org > > Signed-off-by: David Marchand > --- > .ci/linux-setup.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/.ci/linux-setup.sh b/.ci/linux-setup.sh > index dfb9d4a20..38bb88e15 100755 > --- a/.ci/linux-setup.sh > +++ b/.ci/linux-setup.sh > @@ -1,7 +1,7 @@ > #!/bin/sh -xe > > # need to install as 'root' since some of the unit tests won't run without it > -sudo python3 -m pip install --upgrade meson > +sudo python3 -m pip install --upgrade 'meson==0.47.1' > Acked-by: Bruce Richardson