extension test

This commit is contained in:
crazywhalecc
2025-06-28 16:39:02 +08:00
parent 12aadf18cc
commit 924da6ae69

View File

@@ -23,13 +23,13 @@ $test_php_version = [
$test_os = [ $test_os = [
// 'macos-13', // 'macos-13',
// 'macos-14', // 'macos-14',
// 'macos-15', 'macos-15',
// 'ubuntu-latest', 'ubuntu-latest',
// 'ubuntu-22.04', 'ubuntu-22.04',
// 'ubuntu-24.04', 'ubuntu-24.04',
// 'ubuntu-22.04-arm', // 'ubuntu-22.04-arm',
// 'ubuntu-24.04-arm', // 'ubuntu-24.04-arm',
'windows-latest', // 'windows-latest',
]; ];
// whether enable thread safe // whether enable thread safe
@@ -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' => 'minimal', 'Linux', 'Darwin' => 'common',
'Windows' => 'none', 'Windows' => 'none',
}; };