From c09498318a5398ffecea579a4a3da666591101ca Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 26 Jul 2022 09:55:37 -0700 Subject: [PATCH] don't install conformance tests --- build.zig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.zig b/build.zig index 26d3295b8..03a6684ec 100644 --- a/build.zig +++ b/build.zig @@ -123,12 +123,10 @@ fn conformanceSteps( entry.name, }); - // Executable builder. We install all conformance tests so that - // `zig build` verifies they work. + // Executable builder. const c_exe = b.addExecutable(name, path); c_exe.setTarget(target); c_exe.setBuildMode(mode); - c_exe.install(); // Store the mapping try map.put(name, c_exe);