Skip to content

Commit 1e2b401

Browse files
committed
test excimer
1 parent 19f9417 commit 1e2b401

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/globals/test-extensions.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// test php version (8.1 ~ 8.4 available, multiple for matrix)
1515
$test_php_version = [
16-
'8.1',
16+
// '8.1',
1717
// '8.2',
1818
// '8.3',
1919
'8.4',
@@ -23,15 +23,15 @@
2323

2424
// test os (macos-15-intel, macos-15, ubuntu-latest, windows-latest are available)
2525
$test_os = [
26-
// 'macos-15-intel', // bin/spc for x86_64
27-
// 'macos-15', // bin/spc for arm64
26+
'macos-15-intel', // bin/spc for x86_64
27+
'macos-15', // bin/spc for arm64
2828
// 'ubuntu-latest', // bin/spc-alpine-docker for x86_64
29-
// 'ubuntu-22.04', // bin/spc-gnu-docker for x86_64
29+
'ubuntu-22.04', // bin/spc-gnu-docker for x86_64
3030
// 'ubuntu-24.04', // bin/spc for x86_64
31-
// 'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64
31+
'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64
3232
// 'ubuntu-24.04-arm', // bin/spc for arm64
3333
// 'windows-2022', // .\bin\spc.ps1
34-
'windows-2025',
34+
// 'windows-2025',
3535
];
3636

3737
// whether enable thread safe
@@ -50,13 +50,13 @@
5050

5151
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
5252
$extensions = match (PHP_OS_FAMILY) {
53-
'Linux', 'Darwin' => 'curl',
53+
'Linux', 'Darwin' => 'opcache',
5454
'Windows' => 'bcmath',
5555
};
5656

5757
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
5858
$shared_extensions = match (PHP_OS_FAMILY) {
59-
'Linux' => '',
59+
'Linux' => 'excimer',
6060
'Darwin' => '',
6161
'Windows' => '',
6262
};
@@ -67,7 +67,7 @@
6767
// If you want to test extra libs for extensions, add them below (comma separated, example `libwebp,libavif`). Unnecessary, when $with_suggested_libs is true.
6868
$with_libs = match (PHP_OS_FAMILY) {
6969
'Linux', 'Darwin' => 'libwebp',
70-
'Windows' => 'nghttp2',
70+
'Windows' => '',
7171
};
7272

7373
// Please change your test base combination. We recommend testing with `common`.

0 commit comments

Comments
 (0)