Skip to content

Commit e417894

Browse files
committed
add ds tests
1 parent 94b83ea commit e417894

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/globals/test-extensions.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@
1313

1414
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
1515
$extensions = match (PHP_OS_FAMILY) {
16-
'Linux', 'Darwin' => 'xml,imagick',
17-
'Windows' => 'mbstring,pdo_sqlite,mbregex,ffi',
16+
'Linux', 'Darwin' => 'ds',
17+
'Windows' => 'mbstring,pdo_sqlite,mbregex,ffi,ds',
1818
};
1919

2020
// If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`).
2121
$with_libs = match (PHP_OS_FAMILY) {
22-
'Linux', 'Darwin' => 'xz',
22+
'Linux', 'Darwin' => '',
2323
'Windows' => '',
2424
};
2525

2626
// Please change your test base combination. We recommend testing with `common`.
2727
// You can use `common`, `bulk`, `minimal` or `none`.
2828
// note: combination is only available for *nix platform. Windows must use `none` combination
2929
$base_combination = match (PHP_OS_FAMILY) {
30-
'Linux', 'Darwin' => 'minimal',
30+
'Linux', 'Darwin' => 'common',
3131
'Windows' => 'none',
3232
};
3333

0 commit comments

Comments
 (0)