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 4DA79A046B for ; Thu, 9 Jan 2020 13:59:39 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 353811DD59; Thu, 9 Jan 2020 13:59:39 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id 6452D1DD45 for ; Thu, 9 Jan 2020 13:59:36 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1578574775; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ISfLHjX23D8parBfG0gGCH9Cbzen2d4IxQNWM7qttOk=; b=W4BSJ+bqKwWcP9foPF/8b7HT506xr6rYU4YUMBpAkEYM+Ro13kF2Xg1VmwCR4Kg/XjNyDN 6xwOaYujZCNfF7GpYSaH7AoJufSdrBEp4tIjnUTSNE8z3nsVw++bqOEpLWamPInU6EVUvB uxrcVHORQ+fS7VQ8RZ3gIVjHtWoSuqo= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-221-O83ySoqeNIG3cZMsDtt5Jg-1; Thu, 09 Jan 2020 07:59:34 -0500 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id AFAE818C35A0; Thu, 9 Jan 2020 12:59:32 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-19.brq.redhat.com [10.40.204.19]) by smtp.corp.redhat.com (Postfix) with ESMTP id 501A55DA66; Thu, 9 Jan 2020 12:59:29 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: bruce.richardson@intel.com, bluca@debian.org, aconole@redhat.com, stable@dpdk.org, Michael Santana Date: Thu, 9 Jan 2020 13:59:16 +0100 Message-Id: <20200109125916.32073-2-david.marchand@redhat.com> In-Reply-To: <20200109125916.32073-1-david.marchand@redhat.com> References: <20200109125916.32073-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-MC-Unique: O83ySoqeNIG3cZMsDtt5Jg-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [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" 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 =20 # 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=3D=3D0.47.1' =20 # setup hugepages cat /proc/meminfo --=20 2.23.0