authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-02-11 13:53:26-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-02-12 13:14:51-08:00
log0a61eca22c5628b0a56d875246fc4ef007a3bad9
tree9a49a9b48ed873de7c672374076908effe266ef6
parent251f54d1d7d0f871f551c54d77f1a8238a041983

bump max_rss for module tests


1 files changed, 1 insertions(+), 16 deletions(-)

build.zig+1-16
......@@ -560,22 +560,7 @@ pub fn build(b: *std.Build) !void {
560560 .skip_linux = skip_linux,
561561 .skip_llvm = skip_llvm,
562562 .skip_libc = skip_libc,
563 .max_rss = switch (b.graph.host.result.os.tag) {
564 .freebsd => switch (b.graph.host.result.cpu.arch) {
565 .x86_64 => 3_756_422_348,
566 else => 3_800_000_000,
567 },
568 .linux => 6_800_000_000,
569 .macos => switch (b.graph.host.result.cpu.arch) {
570 .aarch64 => 8_273_795_481,
571 else => 8_300_000_000,
572 },
573 .windows => switch (b.graph.host.result.cpu.arch) {
574 .x86_64 => 3_750_236_160,
575 else => 3_800_000_000,
576 },
577 else => 8_300_000_000,
578 },
563 .max_rss = 8_500_000_000,
579564 }));
580565
581566 const unit_tests_step = b.step("test-unit", "Run the compiler source unit tests");