From 15e73c70ab5d41395d2cc81e0737450eabcf49f9 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 26 Jan 2026 20:59:10 -0800 Subject: [PATCH] build.zig: bump max_rss for windows module tests observed error: memory usage peaked at 0.62GB (620556288 bytes), exceeding the declared upper bound of 0.60GB (603070054 bytes). --- build.zig | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build.zig b/build.zig index 9835714efd1dddf29af115c3c2a89dba528a6e06..54568d22c49f902f80bd86d38062cdee69a76ceb 100644 --- a/build.zig +++ b/build.zig @@ -487,10 +487,7 @@ pub fn build(b: *std.Build) !void { .aarch64 => 767_736_217, else => 800_000_000, }, - .windows => switch (b.graph.host.result.cpu.arch) { - .x86_64 => 603_070_054, - else => 700_000_000, - }, + .windows => 700_000_000, else => 3_300_000_000, }, })); -- 2.54.0