Skip to content

Commit 9bfcea6

Browse files
committed
tests
1 parent 58d9797 commit 9bfcea6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/globals/test-extensions.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@
2121

2222
// test os (macos-13, macos-14, macos-15, ubuntu-latest, windows-latest are available)
2323
$test_os = [
24-
'macos-13',
24+
// 'macos-13',
2525
// 'macos-14',
26-
'macos-15',
26+
// 'macos-15',
2727
// 'ubuntu-latest',
2828
// 'ubuntu-22.04',
2929
// 'ubuntu-24.04',
30-
// 'ubuntu-22.04-arm',
30+
'ubuntu-22.04-arm',
3131
// 'ubuntu-24.04-arm',
3232
// 'windows-latest',
3333
];
3434

3535
// whether enable thread safe
36-
$zts = false;
36+
$zts = true;
3737

3838
$no_strip = false;
3939

@@ -54,13 +54,13 @@
5454

5555
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
5656
$shared_extensions = match (PHP_OS_FAMILY) {
57-
'Linux' => '',
57+
'Linux' => 'uv',
5858
'Darwin' => '',
5959
'Windows' => '',
6060
};
6161

6262
// 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;
6464

6565
// If you want to test extra libs for extensions, add them below (comma separated, example `libwebp,libavif`). Unnecessary, when $with_suggested_libs is true.
6666
$with_libs = match (PHP_OS_FAMILY) {

0 commit comments

Comments
 (0)