mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-09 11:40:46 -05:00
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.
This commit is contained in:
parent
540042576e
commit
e91c7a24f2
1 changed files with 1 additions and 1 deletions
|
@ -622,7 +622,7 @@ pub fn build(b: *Build) !void {
|
||||||
start_step.dependOn(&prev_step.step);
|
start_step.dependOn(&prev_step.step);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
} else if (use_healed) {
|
} else if (use_healed and false) {
|
||||||
const test_step = b.step("test", "Test the healed exercises");
|
const test_step = b.step("test", "Test the healed exercises");
|
||||||
b.default_step = test_step;
|
b.default_step = test_step;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue