From bd970948e652e16e8ef8688cc891aa5ab80dbaa3 Mon Sep 17 00:00:00 2001 From: Aelin Date: Sat, 20 Jun 2026 12:14:28 +0200 Subject: [PATCH] systemd/systemd: run tests on more architectures in CI Part-of: --- extra-repos/systemd/systemd/APKBUILD | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/extra-repos/systemd/systemd/APKBUILD b/extra-repos/systemd/systemd/APKBUILD index c182a434a..cd170519a 100644 --- a/extra-repos/systemd/systemd/APKBUILD +++ b/extra-repos/systemd/systemd/APKBUILD @@ -322,11 +322,11 @@ build() { } check() { - case "$CARCH" in - x86_64) meson test --print-errorlogs --quiet --no-stdsplit -C $_meson_builddir ;; - *) - echo "*** NOTE: Skipping tests for archs that might use pmb:crossdirect/qemu-user ***" ;; - esac + if [ "$PMB_CROSS" = "unnecessary" ]; then + meson test --print-errorlogs --quiet --no-stdsplit -C $_meson_builddir + else + echo "*** NOTE: Skipping tests, not building natively ***" + fi } package() {