From patchwork Tue Jun 6 10:52: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: 128199 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 5380842C3E; Tue, 6 Jun 2023 12:52:57 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DCEC140697; Tue, 6 Jun 2023 12:52:56 +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 41A2040223 for ; Tue, 6 Jun 2023 12:52:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1686048775; 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=UadmyNYfXNVGsiRd5Y4cPURdJkuO5vvcFsd0evnBgEc=; b=HM1ppCnc3Als5EfkwpR3DuAImqQsVj9sAg4oPEr2atY9Tq0s4bWen31YOJSZs06VsyGi2a wgYPlXtQWgxOYf+t1p9VJbZa9EDUPIds/GvYrXs2uWb4hTaUSJNTCbYhzixWaP1CnbYdVl bUWd+IEtNTFC+eaLxGQvUAdqmsK795U= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-582-SgKEJAl4PLC3iuTPXWmtaw-1; Tue, 06 Jun 2023 06:52:54 -0400 X-MC-Unique: SgKEJAl4PLC3iuTPXWmtaw-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 38DB83802AE7; Tue, 6 Jun 2023 10:52:54 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.224.247]) by smtp.corp.redhat.com (Postfix) with ESMTP id ED08E2166B25; Tue, 6 Jun 2023 10:52:52 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, ferruh.yigit@amd.com, stable@dpdk.org, Aaron Conole , Michael Santana Subject: [PATCH] ci: fix build for Arm cross compilation in GHA Date: Tue, 6 Jun 2023 12:52:47 +0200 Message-Id: <20230606105247.2715447-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.6 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 We are hitting a storage limit when linking binaries statically. On the other hand, native builds are tested in other part of the CI and the chance of breaking static linking only is relatively low, so let's simply test linking against shared libraries. Cc: stable@dpdk.org Signed-off-by: David Marchand Acked-by: Bruce Richardson Tested-by: Ferruh Yigit --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7322eb59b7..3b629fcdbd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,6 +53,7 @@ jobs: cross: mingw - os: ubuntu-20.04 compiler: gcc + library: shared cross: aarch64 - os: ubuntu-20.04 compiler: gcc