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 DAB6E4233A; Thu, 12 Oct 2023 15:02:26 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B8607402E9; Thu, 12 Oct 2023 15:02:26 +0200 (CEST) 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 5D7EB402C8 for ; Thu, 12 Oct 2023 15:02:25 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1697115744; 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=BC3VOk2iB2zjP6GMVYEjt4QaSbdAAyWwtpGcfmZfbJg=; b=FgAlgnCNaAF14NLXKdmd+DhdLWIhB+j7EjAIufZrFQKFDYeRcJBX5IXeI4QEd556i8665G KjyYSgyRKkOkTpz3vH9lAUTPqrdk5xDMVTqHq52WKRLYYmLsiCiTsc+vWFqc8xG5h9ikPS nhwvKaxyM1oUKx9fU1JUnoIXeCq83fc= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-654-MCCsi0tBMqe9Uynqmmby0A-1; Thu, 12 Oct 2023 09:01:31 -0400 X-MC-Unique: MCCsi0tBMqe9Uynqmmby0A-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id DD0E885A5BE; Thu, 12 Oct 2023 13:01:22 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.34.140]) by smtp.corp.redhat.com (Postfix) with ESMTPS id B03AE40C6F79; Thu, 12 Oct 2023 13:01:22 +0000 (UTC) From: Aaron Conole To: Adam Hassick Cc: ci@dpdk.org, alialnu@nvidia.com Subject: Re: [PATCH v9 0/6] Community Lab Containers and Builder Engine References: <20230811200018.5650-1-ahassick@iol.unh.edu> Date: Thu, 12 Oct 2023 09:01:22 -0400 In-Reply-To: <20230811200018.5650-1-ahassick@iol.unh.edu> (Adam Hassick's message of "Fri, 11 Aug 2023 16:00:12 -0400") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.3 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.2 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org Adam Hassick writes: > This patch series contains a new version of the DPDK CI containers. The old > version was tied very tightly to the Community Lab Infrastructure, so it was > not suitable for general use. This version is designed to make adding new > OSes or OS versions as easy as possible. The minimum functionality can easily > be built on any system that can compile DPDK. It includes support for > building containers for other non-native architectures (ex: arm containers > on x86) and for baking ABI references into the images. > > The inventory file as added in this patch series defines what the community lab > currently supports. > > If you want to build these yourself, don't try to do parallel Makefile builds > on non-server hardware. Libabigail is built into the containers, and since it > is not avaliable in all distros it is compiled from source for many targets. > If embedding the abi is enabled (DPDK_CI_CONTAINERS_BUILD_ABI=Y), with the > current settings, DPDK will be compiled twice for every target in the > inventory file. This will become three times when DPDK main has ABI stability > again. Due to how the containers are constructed, building on non-native > architectures is especially expensive because DPDK is compiled with an emulated > compiler in a qemu vm that only has one thread. > --- Applied - thanks!