From c6ba91f06dedcc3ad3fdba431de6c38e5fb12ad1 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Sat, 28 Mar 2026 10:06:07 +0100 Subject: [PATCH] fix(aur): restrict owlry-core check() to unit tests The integration test (server_test) loads native plugins which segfault in the clean makepkg build environment. Use --lib to run only unit tests. --- aur/owlry-core/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aur/owlry-core/PKGBUILD b/aur/owlry-core/PKGBUILD index 67b5df8..51a674f 100644 --- a/aur/owlry-core/PKGBUILD +++ b/aur/owlry-core/PKGBUILD @@ -28,7 +28,7 @@ check() { cd "owlry" export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target - cargo test -p owlry-core --frozen + cargo test -p owlry-core --frozen --lib } package() {