This commit is contained in:
DubbleClick 2025-06-06 14:32:28 +07:00
parent f75ab9f428
commit a0579efbc2

View File

@ -22,13 +22,13 @@ $test_php_version = [
// test os (macos-13, macos-14, macos-15, ubuntu-latest, windows-latest are available)
$test_os = [
'macos-13',
'macos-14',
// 'macos-14',
'macos-15',
'ubuntu-latest',
'ubuntu-22.04',
'ubuntu-24.04',
// 'ubuntu-24.04',
'ubuntu-22.04-arm',
'ubuntu-24.04-arm',
// 'ubuntu-24.04-arm',
// 'windows-latest',
];
@ -57,7 +57,7 @@ $shared_extensions = match (PHP_OS_FAMILY) {
// 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' => '',
'Linux', 'Darwin' => 'nghttp2,nghttp3,ngtcp2',
'Windows' => '',
};