From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D1B4FA0C41; Wed, 17 Nov 2021 14:38:53 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ACA014068C; Wed, 17 Nov 2021 14:38:53 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 81D5E40040 for ; Wed, 17 Nov 2021 14:38:51 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1637156331; 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: in-reply-to:in-reply-to:references:references; bh=lrb3KfdSwtGGB7l5PZ0W3TaWkznvJOfVl2/M3uPhXW0=; b=aX5uxTDtFmqyXuzSmYOgFHc2/nL33ZTZECWl7l0FGZlKPPg2Kfx/y30EMqCTweJ3FDZBq8 3HdLx+Wcki5QtgggrmU4ghYS/rI3ORwmzUuGeXY4KT0p1UwHvCAUsC218613LSU9/YZdy1 zzilWOxHFCoykJ3keib5nGfivQOjrn0= 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-598-tU0dsLDWOj2-TIxLhlK94w-1; Wed, 17 Nov 2021 08:38:45 -0500 X-MC-Unique: tU0dsLDWOj2-TIxLhlK94w-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 1D58E1922966; Wed, 17 Nov 2021 13:38:44 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.9.182]) by smtp.corp.redhat.com (Postfix) with ESMTPS id AD15660657; Wed, 17 Nov 2021 13:38:42 +0000 (UTC) From: Aaron Conole To: David Marchand Cc: dev@dpdk.org, bruce.richardson@intel.com, thomas@monjalon.net, bluca@debian.org, tredaelli@redhat.com, i.maximets@ovn.org, james.r.harris@intel.com, mohammed@hawari.fr, Michael Santana Subject: Re: [PATCH v2 1/5] ci: test minimum configuration References: <20211110164814.5231-1-david.marchand@redhat.com> <20211117112847.7362-1-david.marchand@redhat.com> <20211117112847.7362-2-david.marchand@redhat.com> Date: Wed, 17 Nov 2021 08:38:41 -0500 In-Reply-To: <20211117112847.7362-2-david.marchand@redhat.com> (David Marchand's message of "Wed, 17 Nov 2021 12:28:43 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=aconole@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org David Marchand writes: > Disabling drivers and optional libraries was not tested. > Add a new target in test-meson-builds.sh and GHA with just the minimum > to run test-null.sh and any other optional component disabled. > > Signed-off-by: David Marchand > --- > Changes since v1: > - dropped target cleanup in test-meson-builds.sh, this will be handled > in a separate series in the future, > - disabled all drivers but mempool/ring and net/null, > required to pass test-null.sh. bus/vdev is explicitly enabled for > Acked-by: Aaron Conole