From patchwork Fri Apr 21 14:34:47 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 126397 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 74BEF429AE; Fri, 21 Apr 2023 16:34:59 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 039F24113C; Fri, 21 Apr 2023 16:34:59 +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 8EAF6410FB for ; Fri, 21 Apr 2023 16:34:57 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1682087696; 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; bh=7IGeytO0HjbPulH/pOvtE1P31u6DPR+Wpc8bR5yEU+E=; b=XwawNlg4z+mgzVKCUh4X9DnBYPPOGOlfU19lucuG3kzAGVT0mjLQGA4jxdpgX+U5XMBEEm 8DCQHpEbw5eP32XTsEWTFJg5aTcQGiXMJRaddhEWqZFAWsi8cBnOZR6VtO4u5libWSJ30y p4kyc6xMeVZLhe2pefY3fkGapPRciZ8= 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-593-0EHhRMoUOkqCMhWVp5B28Q-1; Fri, 21 Apr 2023 10:34:55 -0400 X-MC-Unique: 0EHhRMoUOkqCMhWVp5B28Q-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.rdu2.redhat.com [10.11.54.7]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 11797101A552; Fri, 21 Apr 2023 14:34:55 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.225.85]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5038C140EBF4; Fri, 21 Apr 2023 14:34:54 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: Aaron Conole , Michael Santana Subject: [PATCH] ci: switch to Fedora 37 Date: Fri, 21 Apr 2023 16:34:47 +0200 Message-Id: <20230421143447.3618180-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.7 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com 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 Fedora 35 has been declared EOL in 2022/12 (see [1]). Fedora 36 will soon be EOL too. Move to Fedora 37. Fedora 37 libbpf does not support AF_XDP anymore, now provided by libxdp. 1: https://docs.fedoraproject.org/en-US/releases/eol/ Signed-off-by: David Marchand Acked-by: Aaron Conole --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index edd39cbd62..7322eb59b7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -149,7 +149,7 @@ jobs: fail-fast: false matrix: config: - - image: fedora:35 + - image: fedora:37 steps: - name: Generate various keys @@ -198,9 +198,9 @@ jobs: fail-fast: false matrix: config: - - image: fedora:35 + - image: fedora:37 compiler: gcc - - image: fedora:35 + - image: fedora:37 compiler: clang steps: @@ -250,7 +250,7 @@ jobs: run: docker exec -i dpdk dnf update -y || true - name: Install packages run: docker exec -i dpdk dnf install -y ccache jansson-devel - libarchive-devel libatomic libbsd-devel libbpf-devel libfdt-devel + libarchive-devel libatomic libbsd-devel libxdp-devel libfdt-devel libpcap-devel ninja-build numactl-devel openssl-devel python3-pip python3-pyelftools python3-setuptools python3-wheel rdma-core-devel zlib-devel