From 9649cdcf7707b809371ae4886de03020d4e8afc4 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 29 Apr 2024 16:38:59 +0000 Subject: [PATCH] CI: disable ptest in external-gccarm builds We recently switched the CI to not disable ptest, but this breaks builds that use the GCC binaries built by Arm (external-arm-toolchain). This is because the external-arm-toolchain recipe can't build packages for the target, and the standard oe-core gcc recipes assume that they're being built with themselves and make assumptions, specifically that libunwind was enabled and headers can be copied directly from the sysroot. This is a bigger problem that should be solved somehow, but for now we can just remove ptest in the external-gccarm CI jobs which removes gcc from the builds (it comes in via elfutils-ptest RDEPENDS). Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- ci/external-gccarm.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/external-gccarm.yml b/ci/external-gccarm.yml index 9c1eba9d..8985a1ba 100644 --- a/ci/external-gccarm.yml +++ b/ci/external-gccarm.yml @@ -8,3 +8,6 @@ local_conf_header: SKIP_RECIPE[gcc-cross-arm] = "Using external toolchain" TCMODE = "external-arm" EXTERNAL_TOOLCHAIN = "${TOPDIR}/toolchains/${TARGET_ARCH}" + # Disable ptest as this pulls target compilers, which don't + # work with external toolchain currently + DISTRO_FEATURES:remove = "ptest"