From e91c7a24f237a575aa976a8b6cfdfd2f150b0c06 Mon Sep 17 00:00:00 2001 From: Manlio Perillo Date: Thu, 13 Apr 2023 17:47:17 +0200 Subject: [PATCH] build: disable special case for `zig build -Dhealed` The special case was added because it was used by the Eowyn github workflow. As a side effect, however, it prevents testing the normal case used by users. Disable it, until a better solution is found. --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 4ccf9c2..c983c57 100644 --- a/build.zig +++ b/build.zig @@ -622,7 +622,7 @@ pub fn build(b: *Build) !void { start_step.dependOn(&prev_step.step); return; - } else if (use_healed) { + } else if (use_healed and false) { const test_step = b.step("test", "Test the healed exercises"); b.default_step = test_step;