aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManlio Perillo <[email protected]>2023-04-13 17:47:17 +0200
committerManlio Perillo <[email protected]>2023-04-13 17:47:17 +0200
commite91c7a24f237a575aa976a8b6cfdfd2f150b0c06 (patch)
tree4b307ce1c27ef8e4f3f5cde0f2d7a3d39bf89394
parent540042576e9e24c82a245a2f3d648d3ecace165d (diff)
downloadziglings-e91c7a24f237a575aa976a8b6cfdfd2f150b0c06.tar.xz
ziglings-e91c7a24f237a575aa976a8b6cfdfd2f150b0c06.zip
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.
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
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;