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 2C0A7A0579; Wed, 18 Mar 2020 10:45:22 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 52DFE1AFF; Wed, 18 Mar 2020 10:45:21 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 761ACFEB for ; Wed, 18 Mar 2020 10:45:19 +0100 (CET) IronPort-SDR: huXOn3q+N2NVSJirUU3/Hbx8hr2KTpdVamv+mtemuZDoqAThCXMQay2aWBltNAm7ksmUK9SumG +Pl32+fwEO3g== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Mar 2020 02:45:18 -0700 IronPort-SDR: Leq8ShlnTEXBTkigVZQJWRX6vFFuAfoJmoQ7B8H9XabKGjY1bhObOgqMRiLUehvogZJpQaJJQG 2lQ3EIrMTMGA== X-IronPort-AV: E=Sophos;i="5.70,566,1574150400"; d="scan'208";a="444108759" Received: from bricha3-mobl.ger.corp.intel.com ([10.251.165.47]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 18 Mar 2020 02:45:16 -0700 Date: Wed, 18 Mar 2020 09:45:11 +0000 From: Bruce Richardson To: Thomas Monjalon Cc: dev@dpdk.org, aconole@redhat.com, ruifeng.wang@arm.com, david.marchand@redhat.com Message-ID: <20200318094511.GB1491@bricha3-MOBL.ger.corp.intel.com> References: <20200316170921.6020-1-bruce.richardson@intel.com> <3483262.VQhiAETyHQ@xps> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3483262.VQhiAETyHQ@xps> Subject: Re: [dpdk-dev] [RFC PATCH] ci: reduce examples built for static builds 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 Mon, Mar 16, 2020 at 07:37:01PM +0100, Thomas Monjalon wrote: > 16/03/2020 18:09, Bruce Richardson: > > Static builds can take a lot of space, so reduce the number of examples > > built when doing those static builds. > > > > Signed-off-by: Bruce Richardson > > --- > > --- a/.ci/linux-build.sh > > +++ b/.ci/linux-build.sh > > +if [ "$DEF_LIB" = "static" ] ; then > > + OPTS="$OPTS -Dexamples=l2fwd,l3fwd" > > +else > > + OPTS="$OPTS -Dexamples=all" > > +fi > > I was thinking about doing this kind of change in devtools/test-meson-builds.sh > What do you think? > No major objection. It's probably less likely to be an issue for people running their own test-builds, though if it saves time and space and doesn't much affect the number of issues we are going to hit/miss, I don't see why not do so.