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 8257DA0C41; Thu, 18 Nov 2021 15:18:06 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 15C7A40687; Thu, 18 Nov 2021 15:18:06 +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 EC33940395 for ; Thu, 18 Nov 2021 15:18:04 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1637245084; 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=CuaK7jHj5WfnLcoNxybeqbH08O3t7tIIXakFUmgIG9w=; b=Jf/wxv9h2D1qp3bAUf9wIoQlxitHISEHz8lSWqcUHwQrVGO1p1k8aDREa6qUxbAZilQngv 1+eGaJGjks5wMSXiigkdwLOxLCZi3lnM+HWkol2qoVNqiTnFC2pRDi/EXmlWQg+m1OzgXM BOaPkJfqKg/6DJd8WLutp5XpcD2Ex70= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-268-JN1s4pbBNrm_de8VO8YD6g-1; Thu, 18 Nov 2021 09:18:00 -0500 X-MC-Unique: JN1s4pbBNrm_de8VO8YD6g-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 E70BFDF8BC; Thu, 18 Nov 2021 14:17:58 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.9.182]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 44E7E60657; Thu, 18 Nov 2021 14:17:46 +0000 (UTC) From: Aaron Conole To: David Marchand Cc: dev , Thomas Monjalon , "Yigit, Ferruh" , Michael Santana Subject: Re: [PATCH] ci: add Fedora 35 container in GHA References: <20211116123102.19237-1-david.marchand@redhat.com> Date: Thu, 18 Nov 2021 09:17:44 -0500 In-Reply-To: (David Marchand's message of "Wed, 17 Nov 2021 18:29:17 +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: > On Tue, Nov 16, 2021 at 3:44 PM Aaron Conole wrote: >> > Build DPDK with Fedora 35 containers. >> > Differences with the Ubuntu GHA vm images: >> > - tasks are run as root in containers, no need for sudo, >> > - compiler must be explicitly installed: clang is not in container images, >> > - GHA artifacts can't contain a ':' in their name, and must be filtered, >> > >> > Signed-off-by: David Marchand >> Acked-by: Aaron Conole > > Unfortunately, while testing it a bit more (having it in my tree), I > got some random failures when pulling container images. > I suspect docker limits image pulls... but I am not sure yet. > I'll have to investigate this. I do see that there were warnings even with the github robot's run - but those builds eventually went through. I guess if it isn't stable, it makes sense to not deploy. One alternative is to create a separate "workflow" for github action that can be called "fedora" and that will be recorded differently by the robot and then if there's a failure at least it will be a different "test." This probably isn't preferable, though - since it creates another test in the UI. > > -- > David Marchand