authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-06-26 12:42:08-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-06-26 12:42:08-04:00
log32c6f643aef6a5cad8942c54689210d35b48245a
treeb5bd55e3d154b769a0402a164e9343436f01e248
parentff737cc6483e29b2b8c5af1b7c8ed17bb6c70f32
signature Commit is signed but in an unrecognized format.

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 files changed, 2 insertions(+), 1 deletions(-)

build.zig+2-1
......@@ -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);