patch 'ci: enable C++ check for Arm and PPC' has been queued to stable release 20.11.6
Xueming Li
xuemingl at nvidia.com
Wed Jul 20 10:20:56 CEST 2022
Hi,
FYI, your patch has been queued to stable release 20.11.6
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 07/22/22. So please
shout if anyone has objections.
Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.
Queued patches are on a temporary branch at:
https://github.com/steevenlee/dpdk
This queued commit can be viewed at:
https://github.com/steevenlee/dpdk/commit/c9f6c89d9aa3bdaa0e049f186f83586346d14cc0
Thanks.
Xueming Li <xuemingl at nvidia.com>
---
>From c9f6c89d9aa3bdaa0e049f186f83586346d14cc0 Mon Sep 17 00:00:00 2001
From: Stanislaw Kardach <kda at semihalf.com>
Date: Tue, 21 Jun 2022 14:28:24 +0200
Subject: [PATCH] ci: enable C++ check for Arm and PPC
Cc: Xueming Li <xuemingl at nvidia.com>
[ upstream commit c65e343c141d362ae00df717c9ce9af1f9310647 ]
The crossbuild-essential-<arch> packages contain all necessary
dependencies to cross-compile binaries for a given architecture
including C and C++ compilers. Therefore use those instead of listing
packages directly. This way C++ compiler is also installed and C++
include checks will be checked in CI for ARM and PowerPC.
Signed-off-by: Stanislaw Kardach <kda at semihalf.com>
Reviewed-by: David Marchand <david.marchand at redhat.com>
---
.github/workflows/build.yml | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 4093b326c8..fa79f05955 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -102,8 +102,7 @@ jobs:
run: sudo apt install -y gcc-multilib
- name: Install aarch64 cross compiling packages
if: env.AARCH64 == 'true'
- run: sudo apt install -y gcc-aarch64-linux-gnu libc6-dev-arm64-cross
- pkg-config-aarch64-linux-gnu
+ run: sudo apt install -y crossbuild-essential-arm64
- name: Install test tools packages
if: env.AARCH64 != 'true' || env.RUN_TESTS == 'true'
run: sudo apt install -y gdb
--
2.35.1
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2022-07-20 15:01:00.067499300 +0800
+++ 0027-ci-enable-C-check-for-Arm-and-PPC.patch 2022-07-20 15:00:58.714333824 +0800
@@ -1 +1 @@
-From c65e343c141d362ae00df717c9ce9af1f9310647 Mon Sep 17 00:00:00 2001
+From c9f6c89d9aa3bdaa0e049f186f83586346d14cc0 Mon Sep 17 00:00:00 2001
@@ -4,0 +5,3 @@
+Cc: Xueming Li <xuemingl at nvidia.com>
+
+[ upstream commit c65e343c141d362ae00df717c9ce9af1f9310647 ]
@@ -12,2 +14,0 @@
-Cc: stable at dpdk.org
-
@@ -17,2 +18,2 @@
- .github/workflows/build.yml | 6 ++----
- 1 file changed, 2 insertions(+), 4 deletions(-)
+ .github/workflows/build.yml | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
@@ -21 +22 @@
-index c0d2829d0e..1106256539 100644
+index 4093b326c8..fa79f05955 100644
@@ -24,2 +25,2 @@
-@@ -128,15 +128,13 @@ jobs:
- run: sudo apt install -y gcc-multilib g++-multilib
+@@ -102,8 +102,7 @@ jobs:
+ run: sudo apt install -y gcc-multilib
@@ -31,11 +32,3 @@
- - name: Install mingw cross compiling packages
- if: env.MINGW == 'true'
- run: sudo apt install -y mingw-w64 mingw-w64-tools
- - name: Install ppc64le cross compiling packages
- if: env.PPC64LE == 'true'
-- run: sudo apt install -y gcc-powerpc64le-linux-gnu libc6-dev-ppc64el-cross
-- pkg-config-powerpc-linux-gnu
-+ run: sudo apt install -y crossbuild-essential-ppc64el
- - name: Install riscv64 cross compiling packages
- if: env.RISCV64 == 'true'
- run: sudo apt install -y crossbuild-essential-riscv64
+ - name: Install test tools packages
+ if: env.AARCH64 != 'true' || env.RUN_TESTS == 'true'
+ run: sudo apt install -y gdb
More information about the stable
mailing list