Skip to content

Commit 93340ec

Browse files
authored
Modify test OS and enable frankenphp testing
1 parent 90981e3 commit 93340ec

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
@@ -24,12 +24,12 @@
2424
// test os (macos-15-intel, macos-15, ubuntu-latest, windows-latest are available)
2525
$test_os = [
2626
'macos-15-intel', // bin/spc for x86_64
27-
'macos-15', // bin/spc for arm64
28-
'ubuntu-latest', // bin/spc-alpine-docker for x86_64
29-
'ubuntu-22.04', // bin/spc-gnu-docker for x86_64
30-
'ubuntu-24.04', // bin/spc for x86_64
31-
'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64
32-
'ubuntu-24.04-arm', // bin/spc for arm64
27+
// 'macos-15', // bin/spc for arm64
28+
// 'ubuntu-latest', // bin/spc-alpine-docker for x86_64
29+
// 'ubuntu-22.04', // bin/spc-gnu-docker for x86_64
30+
// 'ubuntu-24.04', // bin/spc for x86_64
31+
// 'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64
32+
// 'ubuntu-24.04-arm', // bin/spc for arm64
3333
// 'windows-2022', // .\bin\spc.ps1
3434
'windows-2025',
3535
];
@@ -43,21 +43,21 @@
4343
$upx = false;
4444

4545
// whether to test frankenphp build, only available for macos and linux
46-
$frankenphp = false;
46+
$frankenphp = true;
4747

4848
// prefer downloading pre-built packages to speed up the build process
4949
$prefer_pre_built = false;
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' => 'rdkafka',
53+
'Linux', 'Darwin' => 'mbregex',
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) {
5959
'Linux' => 'snmp',
60-
'Darwin' => 'snmp',
60+
'Darwin' => '',
6161
'Windows' => '',
6262
};
6363

0 commit comments

Comments
 (0)