From 8a01c402b482b156160847c5ea9a0c7885564cd5 Mon Sep 17 00:00:00 2001 From: Jorg Sowa Date: Sun, 8 Feb 2026 22:24:30 +0100 Subject: [PATCH] ci: enabled back sqlite extension as the bug has been fixed upstream https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=269889 --- .github/actions/freebsd/action.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/actions/freebsd/action.yml b/.github/actions/freebsd/action.yml index 456d88dd1f877..e1b80b1ed9eec 100644 --- a/.github/actions/freebsd/action.yml +++ b/.github/actions/freebsd/action.yml @@ -15,8 +15,6 @@ runs: release: '13.5' usesh: true copyback: false - # Temporarily disable sqlite, as FreeBSD ships it with disabled double quotes. We'll need to fix our tests. - # https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=269889 prepare: | cd $GITHUB_WORKSPACE @@ -45,7 +43,7 @@ runs: pkgconf \ webp \ libavif \ - `#sqlite3` \ + sqlite3 \ curl \ $OPCACHE_TLS_TESTS_DEPS @@ -56,9 +54,7 @@ runs: --enable-debug \ --enable-option-checking=fatal \ --enable-fpm \ - `#--with-pdo-sqlite` \ - --without-sqlite3 \ - --without-pdo-sqlite \ + --with-pdo-sqlite \ --without-pear \ --with-bz2 \ --with-avif \