commit 3ae9a99f628a78ad2f35d97a930b752f354443a1 (tree)
parent 8088105b05aa5977a52dd60993e8aeaae01cb145
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Thu, 27 Mar 2025 05:36:27 +0100
build: increase test-std max rss
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.zig b/build.zig
@@ -510,8 +510,8 @@ pub fn build(b: *std.Build) !void {
.skip_non_native = skip_non_native,
.skip_libc = skip_libc,
.use_llvm = use_llvm,
- // I observed a value of 5136793600 on the M2 CI.
- .max_rss = 5368709120,
+ // I observed a value of 5605064704 on the M2 CI.
+ .max_rss = 6165571174,
}));
const unit_tests_step = b.step("test-unit", "Run the compiler source unit tests");