enable PDO_ODBC and ODBC extension statically (#661)

* enable PDO_ODBC and ODBC extension statically

* fix sorting of ext.json

* add odbc and pdo_odbc extension to tests

* Add full tests, remove pdo_odbc from bulk

* Remove windows support for docs

* Add ODBC and PDO_ODBC extension

* Revert curl static lib

* Add full tests

* Add iconv for macOS

* Add tests

* Fix linux pdo_odbc patch

* Sort config

---------

Co-authored-by: crazywhalecc <jesse2061@outlook.com>
This commit is contained in:
tricker
2025-03-23 16:26:36 +01:00
committed by GitHub
parent 161a3924d2
commit 3ba215c35c
4 changed files with 75 additions and 4 deletions

View File

@@ -21,8 +21,8 @@ $test_php_version = [
// test os (macos-13, macos-14, ubuntu-latest, windows-latest are available)
$test_os = [
// 'macos-13',
// 'macos-14',
'macos-13',
'macos-14',
'ubuntu-latest',
'windows-latest',
];
@@ -40,8 +40,8 @@ $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' => '',
'Windows' => 'mbstring,tokenizer,phar,curl,openssl',
'Linux', 'Darwin' => 'odbc,pdo_odbc',
'Windows' => 'odbc,pdo_odbc',
};
// If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`).