From 8fd808ad5864eec08f5d819e21e662524586605c Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Fri, 10 Jul 2026 15:45:53 -0400 Subject: [PATCH] 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. --- .github/actions/apt-x64/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/apt-x64/action.yml b/.github/actions/apt-x64/action.yml index 7ae0a88ff755..3e654ef9fdc4 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 \