From 4cdefeab81e07c93c5919bcef1532b554acafb96 Mon Sep 17 00:00:00 2001 From: Marc Date: Sun, 19 Oct 2025 11:03:39 +0200 Subject: [PATCH] test with modules to build linux should use install-modules now, macOS should not (zip is not built with php) --- src/globals/test-extensions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/globals/test-extensions.php b/src/globals/test-extensions.php index 99e4e31b..03e0c324 100644 --- a/src/globals/test-extensions.php +++ b/src/globals/test-extensions.php @@ -55,8 +55,8 @@ $extensions = match (PHP_OS_FAMILY) { // If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`). $shared_extensions = match (PHP_OS_FAMILY) { - 'Linux' => '', - 'Darwin' => '', + 'Linux' => 'mysqli', + 'Darwin' => 'zip', 'Windows' => '', };