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).
This commit is contained in:
Andrew Kelley 2026-01-26 20:59:10 -08:00
parent 27e6474508
commit 15e73c70ab

View file

@ -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,
},
}));