fix(build): link libc for Zig tests using C imports
Some checks failed
Documentation / build-and-publish (push) Waiting to run
Security Scan / Security Analysis (push) Waiting to run
Security Scan / Native Library Security (push) Waiting to run
Checkout test / test (push) Successful in 5s
CI/CD Pipeline / Test (push) Has been cancelled
CI/CD Pipeline / Dev Compose Smoke Test (push) Has been cancelled
CI/CD Pipeline / Build (push) Has been cancelled
CI/CD Pipeline / Test Scripts (push) Has been cancelled
CI/CD Pipeline / Test Native Libraries (push) Has been cancelled
CI/CD Pipeline / Docker Build (push) Has been cancelled
Build CLI with Embedded SQLite / build (arm64, aarch64-linux) (push) Has been cancelled
Build CLI with Embedded SQLite / build (x86_64, x86_64-linux) (push) Has been cancelled
Build CLI with Embedded SQLite / build-macos (arm64) (push) Has been cancelled
Build CLI with Embedded SQLite / build-macos (x86_64) (push) Has been cancelled

This commit is contained in:
Jeremie Fraeys 2026-02-21 21:19:09 -05:00
parent 03ed1a05bf
commit ec568b4c85
No known key found for this signature in database

View file

@ -206,6 +206,7 @@ pub fn build(b: *std.Build) void {
const test_exe = b.addTest(.{ const test_exe = b.addTest(.{
.root_module = test_module, .root_module = test_module,
}); });
test_exe.linkLibC();
const run_test = b.addRunArtifact(test_exe); const run_test = b.addRunArtifact(test_exe);
test_step.dependOn(&run_test.step); test_step.dependOn(&run_test.step);