Skip to content

Commit 8f7897e

Browse files
committed
test
1 parent daae5f2 commit 8f7897e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/globals/test-extensions.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
// test os (macos-15-intel, macos-15, ubuntu-latest, windows-latest are available)
2525
$test_os = [
2626
// '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
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
3030
// 'ubuntu-24.04', // bin/spc for x86_64
31-
// 'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64
31+
'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64
3232
// 'ubuntu-24.04-arm', // bin/spc for arm64
3333
// 'windows-2022', // .\bin\spc.ps1
3434
'windows-2025',
@@ -42,15 +42,15 @@
4242
// compress with upx
4343
$upx = false;
4444

45-
// whether to test frankenphp build, only available for macos and linux
46-
$frankenphp = false;
45+
// whether to test frankenphp build, only available for macOS and linux
46+
$frankenphp = true;
4747

4848
// prefer downloading pre-built packages to speed up the build process
4949
$prefer_pre_built = false;
5050

5151
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
5252
$extensions = match (PHP_OS_FAMILY) {
53-
'Linux', 'Darwin' => 'pgsql',
53+
'Linux', 'Darwin' => 'zlib',
5454
'Windows' => 'gd,zlib,mbstring,filter',
5555
};
5656

@@ -66,7 +66,7 @@
6666

6767
// If you want to test extra libs for extensions, add them below (comma separated, example `libwebp,libavif`). Unnecessary, when $with_suggested_libs is true.
6868
$with_libs = match (PHP_OS_FAMILY) {
69-
'Linux', 'Darwin' => '',
69+
'Linux', 'Darwin' => 'libjpeg',
7070
'Windows' => '',
7171
};
7272

0 commit comments

Comments
 (0)