Skip to content

Commit e40c43c

Browse files
committed
Add some tests
1 parent 681a70e commit e40c43c

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
@@ -23,8 +23,8 @@
2323
$test_os = [
2424
// 'macos-13',
2525
// 'macos-14',
26-
// 'macos-15',
27-
// 'ubuntu-latest',
26+
'macos-15',
27+
'ubuntu-latest',
2828
// 'ubuntu-22.04',
2929
// 'ubuntu-24.04',
3030
'ubuntu-22.04-arm',
@@ -33,7 +33,7 @@
3333
];
3434

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

3838
$no_strip = false;
3939

@@ -48,13 +48,13 @@
4848

4949
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
5050
$extensions = match (PHP_OS_FAMILY) {
51-
'Linux', 'Darwin' => 'apcu,ast,bcmath,calendar,ctype,curl,dba,dom,exif,fileinfo,filter,iconv,libxml,mbregex,mbstring,opcache,openssl,pcntl,phar,posix,readline,session,simplexml,sockets,sodium,tokenizer,xml,xmlreader,xmlwriter,zip,zlib',
51+
'Linux', 'Darwin' => 'openssl',
5252
'Windows' => 'xlswriter,openssl',
5353
};
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' => 'uv',
57+
'Linux' => '',
5858
'Darwin' => '',
5959
'Windows' => '',
6060
};
@@ -72,7 +72,7 @@
7272
// You can use `common`, `bulk`, `minimal` or `none`.
7373
// note: combination is only available for *nix platform. Windows must use `none` combination
7474
$base_combination = match (PHP_OS_FAMILY) {
75-
'Linux', 'Darwin' => 'minimal',
75+
'Linux', 'Darwin' => 'bulk',
7676
'Windows' => 'none',
7777
};
7878

0 commit comments

Comments
 (0)