Fix libtiff dependencies, avoid using system libraries (#588)

* Remove tmate debugger

* Bump version to 2.4.4

* Fix libtiff dependencies may wrongly added

* Add matrix tests

* Add tmate debug

* Disable libdeflate for libtiff

* Remove ssh debugger
This commit is contained in:
Jerry Ma
2025-01-25 17:15:53 +09:00
committed by GitHub
parent 4bd3a2ae25
commit 36b4ef306e
5 changed files with 18 additions and 9 deletions

View File

@@ -13,8 +13,6 @@ declare(strict_types=1);
// test php version
$test_php_version = [
'8.1',
'8.2',
'8.3',
'8.4',
];
@@ -22,9 +20,8 @@ $test_php_version = [
// test os (macos-13, macos-14, ubuntu-latest, windows-latest are available)
$test_os = [
'macos-14',
// 'macos-13',
'macos-13',
'ubuntu-latest',
'windows-latest',
];
// whether enable thread safe
@@ -40,7 +37,7 @@ $prefer_pre_built = false;
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
$extensions = match (PHP_OS_FAMILY) {
'Linux', 'Darwin' => 'ast',
'Linux', 'Darwin' => 'imagick',
'Windows' => 'ast',
};