|
13 | 13 |
|
14 | 14 | // test php version (8.1 ~ 8.4 available, multiple for matrix) |
15 | 15 | $test_php_version = [ |
16 | | - '8.1', |
17 | | - '8.2', |
18 | | - '8.3', |
19 | | - '8.4', |
| 16 | + // '8.1', |
| 17 | + // '8.2', |
| 18 | + // '8.3', |
| 19 | + // '8.4', |
20 | 20 | '8.5', |
21 | 21 | // 'git', |
22 | 22 | ]; |
|
26 | 26 | // 'macos-15-intel', // bin/spc for x86_64 |
27 | 27 | // 'macos-15', // bin/spc for arm64 |
28 | 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 |
| 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 | | - 'windows-2025', |
| 34 | + // 'windows-2025', |
35 | 35 | ]; |
36 | 36 |
|
37 | 37 | // whether enable thread safe |
|
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' => 'mysqli,gmp', |
| 53 | + 'Linux', 'Darwin' => 'pgsql', |
54 | 54 | 'Windows' => 'com_dotnet', |
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 | | - 'Linux' => 'grpc,mysqlnd_parsec,mysqlnd_ed25519', |
| 59 | + 'Linux' => '', |
60 | 60 | 'Darwin' => '', |
61 | 61 | 'Windows' => '', |
62 | 62 | }; |
|
66 | 66 |
|
67 | 67 | // If you want to test extra libs for extensions, add them below (comma separated, example `libwebp,libavif`). Unnecessary, when $with_suggested_libs is true. |
68 | 68 | $with_libs = match (PHP_OS_FAMILY) { |
69 | | - 'Linux', 'Darwin' => 'libwebp', |
| 69 | + 'Linux', 'Darwin' => '', |
70 | 70 | 'Windows' => '', |
71 | 71 | }; |
72 | 72 |
|
|
0 commit comments