Skip to content

Commit 32c6f64

Browse files
committed
disable building self hosted compiler in test suite
Rather than fixing regressions with deprecated coroutines, I'm going to let them regress more until #2377 is solved.
1 parent ff737cc commit 32c6f64

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.zig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ pub fn build(b: *Builder) !void {
7474
const skip_non_native = b.option(bool, "skip-non-native", "Main test suite skips non-native builds") orelse false;
7575
const skip_self_hosted = b.option(bool, "skip-self-hosted", "Main test suite skips building self hosted compiler") orelse false;
7676
if (!skip_self_hosted) {
77-
test_step.dependOn(&exe.step);
77+
// TODO re-enable this after https://github.com/ziglang/zig/issues/2377
78+
//test_step.dependOn(&exe.step);
7879
}
7980
const verbose_link_exe = b.option(bool, "verbose-link", "Print link command for self hosted compiler") orelse false;
8081
exe.setVerboseLink(verbose_link_exe);

0 commit comments

Comments
 (0)