Trigger common extension test

This commit is contained in:
crazywhalecc 2025-07-22 21:14:25 +08:00
parent 1888b735d1
commit dfbc9a7fff
No known key found for this signature in database
GPG Key ID: 1F4BDD59391F2680

View File

@ -72,7 +72,7 @@ $with_libs = match (PHP_OS_FAMILY) {
// You can use `common`, `bulk`, `minimal` or `none`. // You can use `common`, `bulk`, `minimal` or `none`.
// note: combination is only available for *nix platform. Windows must use `none` combination // note: combination is only available for *nix platform. Windows must use `none` combination
$base_combination = match (PHP_OS_FAMILY) { $base_combination = match (PHP_OS_FAMILY) {
'Linux', 'Darwin' => 'bulk', 'Linux', 'Darwin' => 'common',
'Windows' => 'none', 'Windows' => 'none',
}; };