From b50692b29e80b28ca7672530143ebf7ac7387f98 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Thu, 4 Jun 2026 19:36:01 -0700 Subject: [PATCH] compile everything on zig build --- build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig b/build.zig index b3bc1b2bc54fce0e0a0b279427273e505b20bab3..d10b8327aa7264ea3cf340894ef46a8606f383de 100644 --- a/build.zig +++ b/build.zig @@ -24,6 +24,7 @@ pub fn build(b: *std.Build) void { deps.addAllTo(tests); tests.use_llvm = !disable_llvm; tests.use_lld = !disable_llvm; + b.getInstallStep().dependOn(&tests.step); const test_step = b.step("test", "Run all library tests"); const tests_run = b.addRunArtifact(tests); -- 2.54.0