|
24 | 24 | // test os (macos-15-intel, macos-15, ubuntu-latest, windows-latest are available) |
25 | 25 | $test_os = [ |
26 | 26 | '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 |
33 | 33 | // 'windows-2022', // .\bin\spc.ps1 |
34 | 34 | 'windows-2025', |
35 | 35 | ]; |
|
43 | 43 | $upx = false; |
44 | 44 |
|
45 | 45 | // whether to test frankenphp build, only available for macos and linux |
46 | | -$frankenphp = false; |
| 46 | +$frankenphp = true; |
47 | 47 |
|
48 | 48 | // prefer downloading pre-built packages to speed up the build process |
49 | 49 | $prefer_pre_built = false; |
50 | 50 |
|
51 | 51 | // If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`). |
52 | 52 | $extensions = match (PHP_OS_FAMILY) { |
53 | | - 'Linux', 'Darwin' => 'rdkafka', |
| 53 | + 'Linux', 'Darwin' => 'mbregex', |
54 | 54 | 'Windows' => 'bcmath', |
55 | 55 | }; |
56 | 56 |
|
57 | 57 | // If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`). |
58 | 58 | $shared_extensions = match (PHP_OS_FAMILY) { |
59 | 59 | 'Linux' => 'snmp', |
60 | | - 'Darwin' => 'snmp', |
| 60 | + 'Darwin' => '', |
61 | 61 | 'Windows' => '', |
62 | 62 | }; |
63 | 63 |
|
|
0 commit comments