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 99D9742D31 for ; Fri, 23 Jun 2023 16:11:30 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 84B1040ED7; Fri, 23 Jun 2023 16:11:30 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 6C3E0406B8 for ; Fri, 23 Jun 2023 16:11:29 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1687529488; 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=E+Yy7lOijGXrbwIRZknGbH/nq/bydWDXFd4KBAYwWHc=; b=JhudpacPwLMgBaJoxL5qLo4caC0hKmIAbJM5qzxDEubGPaFDxmnwD+bSSx7WKM8miJmPpL HYHBmagatmbHyQBq8uARKmJH8ellTSkVHlIR1/ZCzFW/Pwt52DBUbxMsP7o3Atzt7FCFP0 RG7q67AUxmZW6dhHh04NHn1US4CtIB0= 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-187-FGaD7Ye0NjyYnM6gzJ3Rdg-1; Fri, 23 Jun 2023 10:11:27 -0400 X-MC-Unique: FGaD7Ye0NjyYnM6gzJ3Rdg-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 08405185A795; Fri, 23 Jun 2023 14:11:27 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.32.232]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D032BF5AEE; Fri, 23 Jun 2023 14:11:26 +0000 (UTC) From: Aaron Conole To: Adam Hassick Cc: Ali Alnubani , "ci@dpdk.org" Subject: Re: [PATCH v6 0/6] Community Lab Containers and Builder Engine References: <20230525171505.1276457-1-ahassick@iol.unh.edu> Date: Fri, 23 Jun 2023 10:11:26 -0400 In-Reply-To: (Adam Hassick's message of "Thu, 22 Jun 2023 15:28:41 -0400") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.5 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: > These changes are based off of an internal copy that should've been kept = up-to-date with the latest patch > series. This internal copy is what we're running in production to build o= ur images. This is where I made my > changes when adding documentation for new features. I'll make sure that t= he changes Owen was asked to > add between the initial patchset and the v4 patchset are present in what = we have running in production and > in the next patch. > > On an unrelated note, the version of the arch dockerfile template in this= patch no longer builds without error. > This is due to a change in the arch base image that prevents the installa= tion of pip packages in the root > environment. I will include those changes in the next patchset as well. Thanks. I look forward to v7. > On Thu, Jun 22, 2023 at 11:29=E2=80=AFAM Ali Alnubani wrote: > > > -----Original Message----- > > From: Adam Hassick > > Sent: Thursday, May 25, 2023 8:15 PM > > To: ci@dpdk.org > > Cc: aconole@redhat.com; Ali Alnubani ; Adam Hassic= k > > > > Subject: [PATCH v6 0/6] Community Lab Containers and Builder Engine > >=20 > > This patch series contains a new version of the DPDK CI containers. Th= e 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 contai= ners > > on x86) and for baking ABI references into the images. Support for > > building the Coverity Scan container image has also been added. > >=20 > > The inventory file as added in this patch series defines what the comm= unity > > lab > > currently supports. > >=20 > > 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 s= ince it > > is not avaliable in all distros it is compiled from source for many ta= rgets. > > If embedding the abi is enabled (DPDK_CI_CONTAINERS_BUILD_ABI=3DY), wi= th > > the > > current settings, DPDK will be compiled thrice for every target in the > > inventory file. Due to how the containers are constructed, building on > > non-native architectures is especially expensive because DPDK is compi= led with > > an emulated compiler in a qemu vm that only has one thread. > >=20 > > Hi Adam, > > Are you sure your changes were based on Owen's most recent patchset (v4)= ? > I noticed that the README no longer mentions the dependency on podman v4= .0.0. See: > https://inbox.dpdk.org/ci/DM4PR12MB51677D9D8DBCD1A3D7D3997DDA2B9@DM4PR12= MB5167.namprd12.prod.outlook.com/