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 E175F42C3E for ; Tue, 6 Jun 2023 12:52:58 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D95DA410F2; Tue, 6 Jun 2023 12:52:58 +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 24C62410DD for ; Tue, 6 Jun 2023 12:52:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1686048777; 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=QChWV7+cbE0QQl6y9Wj7W+1CaXA3/KI6t8/668L8H0dwpJF2VhmhkkAjS3sKQWN94TV0Xt 1B0E+dTqUM/RPNqrv3Cp/X0GCk3Y3UUaSJamQYCDiPTvA/Ha6Ean7eP5OhvxUjPGpMqrAP OhAMjO/ZNvGtotsai57GDf219ShVOLY= 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 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-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 --- .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 -- 2.40.1