|
23 | 23 | $test_os = [
|
24 | 24 | // 'macos-13', // bin/spc for x86_64
|
25 | 25 | // 'macos-14', // bin/spc for arm64
|
26 |
| - 'macos-15', // bin/spc for arm64 |
| 26 | + // 'macos-15', // bin/spc for arm64 |
27 | 27 | 'ubuntu-latest', // bin/spc-alpine-docker for x86_64
|
28 |
| - 'ubuntu-22.04', // bin/spc-gnu-docker for x86_64 |
29 |
| - 'ubuntu-24.04', // bin/spc for x86_64 |
| 28 | + // 'ubuntu-22.04', // bin/spc-gnu-docker for x86_64 |
| 29 | + // 'ubuntu-24.04', // bin/spc for x86_64 |
30 | 30 | // 'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64
|
31 | 31 | // 'ubuntu-24.04-arm', // bin/spc for arm64
|
32 | 32 | // 'windows-latest', // .\bin\spc.ps1
|
|
44 | 44 | $frankenphp = false;
|
45 | 45 |
|
46 | 46 | // prefer downloading pre-built packages to speed up the build process
|
47 |
| -$prefer_pre_built = true; |
| 47 | +$prefer_pre_built = false; |
48 | 48 |
|
49 | 49 | // If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
|
50 | 50 | $extensions = match (PHP_OS_FAMILY) {
|
51 |
| - 'Linux', 'Darwin' => 'curl', |
| 51 | + 'Linux', 'Darwin' => 'imap,swoole', |
52 | 52 | 'Windows' => 'intl',
|
53 | 53 | };
|
54 | 54 |
|
55 | 55 | // If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
|
56 | 56 | $shared_extensions = match (PHP_OS_FAMILY) {
|
57 |
| - 'Linux' => 'uv', |
| 57 | + 'Linux' => '', |
58 | 58 | 'Darwin' => '',
|
59 | 59 | 'Windows' => '',
|
60 | 60 | };
|
|
72 | 72 | // You can use `common`, `bulk`, `minimal` or `none`.
|
73 | 73 | // note: combination is only available for *nix platform. Windows must use `none` combination
|
74 | 74 | $base_combination = match (PHP_OS_FAMILY) {
|
75 |
| - 'Linux', 'Darwin' => 'common', |
| 75 | + 'Linux', 'Darwin' => 'minimal', |
76 | 76 | 'Windows' => 'none',
|
77 | 77 | };
|
78 | 78 |
|
|
0 commit comments