From 3445a2cd58c10ee02e56fe1c4faf305c4a226df4 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Sun, 30 Jun 2024 00:13:40 +0800 Subject: [PATCH] Add extension tests --- 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 d49365ba..3f237007 100644 --- a/src/globals/test-extensions.php +++ b/src/globals/test-extensions.php @@ -20,13 +20,13 @@ $upx = true; // If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`). $extensions = match (PHP_OS_FAMILY) { 'Linux', 'Darwin' => 'sockets', - 'Windows' => 'mbstring,pdo_sqlite,mbregex,gd', + 'Windows' => 'mbstring,pdo_sqlite,mbregex,bz2,sqlsrv,pdo_sqlsrv,yaml,zip,rar', }; // If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`). $with_libs = match (PHP_OS_FAMILY) { 'Linux', 'Darwin' => '', - 'Windows' => 'libjpeg,libwebp,libavif,freetype', + 'Windows' => '', }; // Please change your test base combination. We recommend testing with `common`.