You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/globals/test-extensions.php
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -21,19 +21,19 @@
21
21
22
22
// test os (macos-13, macos-14, macos-15, ubuntu-latest, windows-latest are available)
23
23
$test_os = [
24
-
'macos-13',
24
+
// 'macos-13',
25
25
// 'macos-14',
26
-
'macos-15',
26
+
// 'macos-15',
27
27
// 'ubuntu-latest',
28
28
// 'ubuntu-22.04',
29
29
// 'ubuntu-24.04',
30
-
// 'ubuntu-22.04-arm',
30
+
'ubuntu-22.04-arm',
31
31
// 'ubuntu-24.04-arm',
32
32
// 'windows-latest',
33
33
];
34
34
35
35
// whether enable thread safe
36
-
$zts = false;
36
+
$zts = true;
37
37
38
38
$no_strip = false;
39
39
@@ -54,13 +54,13 @@
54
54
55
55
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
56
56
$shared_extensions = match (PHP_OS_FAMILY) {
57
-
'Linux' => '',
57
+
'Linux' => 'uv',
58
58
'Darwin' => '',
59
59
'Windows' => '',
60
60
};
61
61
62
62
// If you want to test lib-suggests for all extensions and libraries, set it to true.
63
-
$with_suggested_libs = true;
63
+
$with_suggested_libs = false;
64
64
65
65
// If you want to test extra libs for extensions, add them below (comma separated, example `libwebp,libavif`). Unnecessary, when $with_suggested_libs is true.
0 commit comments