Commit c3236b922d1 for php.net
commit c3236b922d1c37a1ad0c512db41ae859b197248a
Author: Ilia Alshanetsky <ilia@ilia.ws>
Date: Fri Jul 10 15:45:53 2026 -0400
Install the SQLite ODBC driver in CI
The ext/odbc and pdo_odbc regression tests connect through a real ODBC
driver (Driver=SQLite3), which was never installed, so they skipped on
every lane. libsqliteodbc registers the SQLite3 driver and supports
Database=:memory:, so the tests run without a database server. Alpine
has no such package, so those lanes keep skipping.
Closes GH-22686
diff --git a/.github/actions/apt-x64/action.yml b/.github/actions/apt-x64/action.yml
index 7ae0a88ff75..3e654ef9fdc 100644
--- a/.github/actions/apt-x64/action.yml
+++ b/.github/actions/apt-x64/action.yml
@@ -63,6 +63,7 @@ runs:
snmp-mibs-downloader \
freetds-dev \
unixodbc-dev \
+ libsqliteodbc \
llvm \
clang \
dovecot-core \