community/appstream-generator: further increase test timeout

limit this to loongarch64
This commit is contained in:
Celeste 2024-09-06 05:21:38 +00:00
parent b9a7117fb8
commit 5282adacb1

View File

@ -39,8 +39,15 @@ build() {
}
check() {
# the loongarch64 builder times out with the standard timeout
meson test --timeout-multiplier 3 --no-rebuild --print-errorlogs -C output
case "$CARCH" in
loongarch64)
# asgen_tests times out with the standard timeout on the builder
meson test --timeout-multiplier 10 --no-rebuild --print-errorlogs -C output
;;
*)
meson test --no-rebuild --print-errorlogs -C output
;;
esac
}
package() {