We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52f4e93 commit c4f96eaCopy full SHA for c4f96ea
build.zig
@@ -76,7 +76,11 @@ pub fn build(b: *Builder) !void {
76
77
const test_stage2_step = b.step("test-stage2", "Run the stage2 compiler tests");
78
test_stage2_step.dependOn(&test_stage2.step);
79
- test_step.dependOn(test_stage2_step);
+
80
+ // TODO see https://github.com/ziglang/zig/issues/1364
81
+ if (false) {
82
+ test_step.dependOn(test_stage2_step);
83
+ }
84
85
const all_modes = []builtin.Mode{
86
builtin.Mode.Debug,
0 commit comments