Skip to content

Commit f4e1d7d

Browse files
committed
Trigger tests
1 parent 3bb9a7b commit f4e1d7d

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
@@ -13,9 +13,9 @@
1313

1414
// test php version (8.1 ~ 8.4 available, multiple for matrix)
1515
$test_php_version = [
16-
// '8.1',
17-
// '8.2',
18-
// '8.3',
16+
'8.1',
17+
'8.2',
18+
'8.3',
1919
'8.4',
2020
];
2121

@@ -45,19 +45,19 @@
4545

4646
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
4747
$extensions = match (PHP_OS_FAMILY) {
48-
'Linux', 'Darwin' => 'openssl,curl',
48+
'Linux', 'Darwin' => 'curl',
4949
'Windows' => 'xlswriter,openssl',
5050
};
5151

5252
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
5353
$shared_extensions = match (PHP_OS_FAMILY) {
54-
'Linux' => 'xdebug',
54+
'Linux' => '',
5555
'Windows', 'Darwin' => '',
5656
};
5757

5858
// If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`).
5959
$with_libs = match (PHP_OS_FAMILY) {
60-
'Linux', 'Darwin' => 'nghttp2,nghttp3,ngtcp2',
60+
'Linux', 'Darwin' => 'brotli,curl,freetype,gmssl,libaom,libavif,libde265,libevent,libheif,libjpeg,librabbitmq,libssh2,libuuid,libuv,libwebp,libxml2,libyaml,libzip,mimalloc,snappy,tidy,zstd',
6161
'Windows' => '',
6262
};
6363

0 commit comments

Comments
 (0)