From 2f6599292cf3dc9309608f667d42d7db44151f5a Mon Sep 17 00:00:00 2001 From: salmonumbrella <182032677+salmonumbrella@users.noreply.github.com> Date: Thu, 17 Sep 2026 16:28:01 +0000 Subject: [PATCH] fix(ci): install SQLite headers for browser test builds --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f51e7395..823d192ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -174,7 +174,7 @@ jobs: rm -f /etc/apt/sources.list.d/nodesource.list for attempt in 1 2 3; do if apt-get update -o Acquire::Retries=3 -o Acquire::http::Timeout=30 \ - && apt-get install -y --no-install-recommends -o Acquire::Retries=3 -o Acquire::http::Timeout=30 gcc g++ make unzip; then + && apt-get install -y --no-install-recommends -o Acquire::Retries=3 -o Acquire::http::Timeout=30 gcc g++ make unzip libsqlite3-dev; then exit 0 fi echo "apt attempt $attempt failed; retrying" >&2 @@ -242,7 +242,7 @@ jobs: rm -f /etc/apt/sources.list.d/nodesource.list for attempt in 1 2 3; do if apt-get update -o Acquire::Retries=3 -o Acquire::http::Timeout=30 \ - && apt-get install -y --no-install-recommends -o Acquire::Retries=3 -o Acquire::http::Timeout=30 gcc g++ make unzip; then + && apt-get install -y --no-install-recommends -o Acquire::Retries=3 -o Acquire::http::Timeout=30 gcc g++ make unzip libsqlite3-dev; then exit 0 fi echo "apt attempt $attempt failed; retrying" >&2