From 2d36e298dd48c4844f9e1b283f3aa5528729c206 Mon Sep 17 00:00:00 2001 From: "Victor M. Varela" Date: Thu, 7 May 2026 17:09:36 +0200 Subject: [PATCH] fix: pass -Dbundle-sqlite=true to unit-test step in CI On Windows there is no system sqlite3 library, so xml.zig unit tests fail with 'unable to find dynamic system library sqlite3'. The SQLite amalgamation is already downloaded before this step, so bundling it is both correct and sufficient on all platforms. Closes #136 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb856ba..8ff24f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: run: zig build -Dbundle-sqlite=true -Doptimize=ReleaseSafe - name: Unit tests (csv.zig) - run: zig build unit-test + run: zig build unit-test -Dbundle-sqlite=true - name: Integration tests (build.zig) if: runner.os != 'Windows'