From 32c6f643aef6a5cad8942c54689210d35b48245a Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 26 Jun 2019 12:42:08 -0400 Subject: [PATCH] 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. --- build.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 7ee30b8477..d233e76a59 100644 --- a/build.zig +++ b/build.zig @@ -74,7 +74,8 @@ pub fn build(b: *Builder) !void { const skip_non_native = b.option(bool, "skip-non-native", "Main test suite skips non-native builds") orelse false; const skip_self_hosted = b.option(bool, "skip-self-hosted", "Main test suite skips building self hosted compiler") orelse false; if (!skip_self_hosted) { - test_step.dependOn(&exe.step); + // TODO re-enable this after https://github.com/ziglang/zig/issues/2377 + //test_step.dependOn(&exe.step); } const verbose_link_exe = b.option(bool, "verbose-link", "Print link command for self hosted compiler") orelse false; exe.setVerboseLink(verbose_link_exe);