Disable zlib testing under x86-64_musl

x86-64_musl is built via cross-compilation, so tests cannot be run
This commit is contained in:
Veloman Yunkan 2025-06-27 17:16:52 +04:00 committed by GitHub
parent 9def7175bb
commit 7d1a64fe66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,4 +24,8 @@ class zlib(Dependency):
archives = [src_archive, meson_patch]
#patches = ['zlib_std_libname.patch']
Builder = MesonBuilder
class Builder(MesonBuilder):
@property
def configure_options(self):
if self.buildEnv.configInfo.build == "x86-64_musl":
yield "-Dtests=disabled"