From b32a0084f8fec512018fa748a227fe768b7e9c80 Mon Sep 17 00:00:00 2001 From: Aelin Date: Mon, 22 Jun 2026 04:43:14 +0200 Subject: [PATCH] systemd/dbus-broker: run tests on more architectures in CI [ci:skip-vercheck]: no effect in BPO Part-of: --- extra-repos/systemd/dbus-broker/APKBUILD | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/extra-repos/systemd/dbus-broker/APKBUILD b/extra-repos/systemd/dbus-broker/APKBUILD index 980259aa5..5e927bbc0 100644 --- a/extra-repos/systemd/dbus-broker/APKBUILD +++ b/extra-repos/systemd/dbus-broker/APKBUILD @@ -23,11 +23,11 @@ build() { } check() { - # Some tests timeout when run under qemu, so only run tests if we're on x86_64 - # since we know this is a "native" arch in gitlab CI and bpo - case "$CARCH" in - x86_64) meson test --print-errorlogs -C build;; - esac + if [ "$PMB_CROSS" = "unnecessary" ]; then + meson test --print-errorlogs -C build + else + echo "*** NOTE: Skipping tests, not building natively ***" + fi } package() {