Skip to content

Commit d91b476

Browse files
committed
test shared imagick.so build
1 parent f7080c6 commit d91b476

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/SPC/builder/unix/library/libjxl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ protected function build(): void
3636
->addConfigureArgs('-DJPEGXL_ENABLE_PLUGINS=OFF')
3737
->addConfigureArgs('-DJPEGXL_ENABLE_JNI=OFF')
3838
->addConfigureArgs('-DJPEGXL_STATIC=' . (SPCTarget::isStatic() ? 'ON' : 'OFF'))
39-
->addConfigureArgs('-DBUILD_TESTING=OFF')
4039
->addConfigureArgs('-DJPEGXL_FORCE_SYSTEM_BROTLI=ON')
40+
->addConfigureArgs('-DBUILD_TESTING=OFF')
4141
->build();
4242
}
4343
}

src/globals/test-extensions.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
'macos-13', // bin/spc for x86_64
2525
// 'macos-14', // bin/spc for arm64
2626
'macos-15', // bin/spc for arm64
27-
'ubuntu-latest', // bin/spc-alpine-docker for x86_64
27+
// 'ubuntu-latest', // bin/spc-alpine-docker for x86_64
2828
'ubuntu-22.04', // bin/spc-gnu-docker for x86_64
2929
// 'ubuntu-24.04', // bin/spc for x86_64
3030
'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64
@@ -48,13 +48,13 @@
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' => 'imagick',
51+
'Linux', 'Darwin' => 'bcmath',
5252
'Windows' => 'intl',
5353
};
5454

5555
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
5656
$shared_extensions = match (PHP_OS_FAMILY) {
57-
'Linux' => '',
57+
'Linux' => 'imagick',
5858
'Darwin' => '',
5959
'Windows' => '',
6060
};

0 commit comments

Comments
 (0)