Skip to content

Commit

Permalink
disable building self hosted compiler in test suite
Browse files Browse the repository at this point in the history
Rather than fixing regressions with deprecated coroutines, I'm going
to let them regress more until #2377 is solved.
  • Loading branch information
andrewrk committed Jun 26, 2019
1 parent ff737cc commit 32c6f64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 32c6f64

Please sign in to comment.