community/chez-scheme: only run tests on x86_64

See https://github.com/cisco/ChezScheme/issues/695
This commit is contained in:
Sören Tempel 2023-05-07 19:22:00 +02:00 committed by Sören Tempel
parent 12eaddad29
commit bbdbc6d2da

View File

@ -24,6 +24,15 @@ source="https://github.com/cisco/ChezScheme/releases/download/v$pkgver/csv$pkgve
x86_64bit-time_t.patch"
builddir="$srcdir"/csv$pkgver
# Only run the testsuite on x86_64.
#
# x86: https://github.com/cisco/ChezScheme/issues/695
# armhf: doesn't seem to support test status reporting.
case "$CARCH" in
x86) options="!check" ;;
armhf) options="!check" ;;
esac
case "$CARCH" in
x86) _chez_host=ti3le ;;
x86_64) _chez_host=ta6le ;;