|
14 | 14 | // test php version (8.1 ~ 8.4 available, multiple for matrix)
|
15 | 15 | $test_php_version = [
|
16 | 16 | '8.1',
|
17 |
| - '8.2', |
18 |
| - '8.3', |
| 17 | + // '8.2', |
| 18 | + // '8.3', |
19 | 19 | '8.4',
|
20 | 20 | ];
|
21 | 21 |
|
22 | 22 | // test os (macos-13, macos-14, macos-15, ubuntu-latest, windows-latest are available)
|
23 | 23 | $test_os = [
|
24 |
| - // 'macos-13', // bin/spc for x86_64 |
| 24 | + 'macos-13', // bin/spc for x86_64 |
25 | 25 | // 'macos-14', // bin/spc for arm64
|
26 |
| - // 'macos-15', // bin/spc for arm64 |
27 |
| - // 'ubuntu-latest', // bin/spc-alpine-docker for x86_64 |
28 |
| - // 'ubuntu-22.04', // bin/spc-gnu-docker for x86_64 |
| 26 | + 'macos-15', // bin/spc for arm64 |
| 27 | + 'ubuntu-latest', // bin/spc-alpine-docker for x86_64 |
| 28 | + 'ubuntu-22.04', // bin/spc-gnu-docker for x86_64 |
29 | 29 | // 'ubuntu-24.04', // bin/spc for x86_64
|
30 |
| - // 'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64 |
| 30 | + 'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64 |
31 | 31 | // 'ubuntu-24.04-arm', // bin/spc for arm64
|
32 |
| - 'windows-latest', // .\bin\spc.ps1 |
| 32 | + // 'windows-latest', // .\bin\spc.ps1 |
33 | 33 | ];
|
34 | 34 |
|
35 | 35 | // whether enable thread safe
|
36 |
| -$zts = false; |
| 36 | +$zts = true; |
37 | 37 |
|
38 | 38 | $no_strip = false;
|
39 | 39 |
|
|
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' => 'imap,swoole', |
52 |
| - 'Windows' => 'curl', |
| 51 | + 'Linux', 'Darwin' => 'imagick', |
| 52 | + 'Windows' => 'intl', |
53 | 53 | };
|
54 | 54 |
|
55 | 55 | // If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
|
|
60 | 60 | };
|
61 | 61 |
|
62 | 62 | // If you want to test lib-suggests for all extensions and libraries, set it to true.
|
63 |
| -$with_suggested_libs = false; |
| 63 | +$with_suggested_libs = true; |
64 | 64 |
|
65 | 65 | // If you want to test extra libs for extensions, add them below (comma separated, example `libwebp,libavif`). Unnecessary, when $with_suggested_libs is true.
|
66 | 66 | $with_libs = match (PHP_OS_FAMILY) {
|
|
0 commit comments