Skip to content

Commit 9d2d3d2

Browse files
committed
test
# Conflicts: # src/globals/test-extensions.php
1 parent cec445e commit 9d2d3d2

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

config/lib.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,10 @@
520520
],
521521
"lib-suggests-unix": [
522522
"lerc",
523-
"jbig"
523+
"jbig",
524+
"xz",
525+
"webp",
526+
"zstd"
524527
]
525528
},
526529
"libuuid": {

src/globals/test-extensions.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,26 @@
1414
// test php version (8.1 ~ 8.4 available, multiple for matrix)
1515
$test_php_version = [
1616
'8.1',
17-
'8.2',
18-
'8.3',
17+
// '8.2',
18+
// '8.3',
1919
'8.4',
2020
];
2121

2222
// test os (macos-13, macos-14, macos-15, ubuntu-latest, windows-latest are available)
2323
$test_os = [
24-
// 'macos-13', // bin/spc for x86_64
24+
'macos-13', // bin/spc for x86_64
2525
// '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
2929
// '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
3131
// 'ubuntu-24.04-arm', // bin/spc for arm64
32-
'windows-latest', // .\bin\spc.ps1
32+
// 'windows-latest', // .\bin\spc.ps1
3333
];
3434

3535
// whether enable thread safe
36-
$zts = false;
36+
$zts = true;
3737

3838
$no_strip = false;
3939

@@ -48,8 +48,8 @@
4848

4949
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
5050
$extensions = match (PHP_OS_FAMILY) {
51-
'Linux', 'Darwin' => 'imap,swoole',
52-
'Windows' => 'curl',
51+
'Linux', 'Darwin' => 'imagick',
52+
'Windows' => 'intl',
5353
};
5454

5555
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
@@ -60,7 +60,7 @@
6060
};
6161

6262
// 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;
6464

6565
// If you want to test extra libs for extensions, add them below (comma separated, example `libwebp,libavif`). Unnecessary, when $with_suggested_libs is true.
6666
$with_libs = match (PHP_OS_FAMILY) {

0 commit comments

Comments
 (0)