authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-02-07 23:35:31-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-02-07 23:35:31-08:00
log8453fb09a20dbf9a31c7986accbee727e511f40b
treea792e90562bbde2219d00acec9b57f409a3b1fcb
parentba5e64ff6b3e759b83294e5cf940d940c832e13d

build: bump max_rss of std lib tests to 5G


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

build.zig+2-2
...@@ -513,8 +513,8 @@ pub fn build(b: *std.Build) !void {...@@ -513,8 +513,8 @@ pub fn build(b: *std.Build) !void {
513 .skip_non_native = skip_non_native,513 .skip_non_native = skip_non_native,
514 .skip_libc = skip_libc,514 .skip_libc = skip_libc,
515 .use_llvm = use_llvm,515 .use_llvm = use_llvm,
516 // I observed a value of 4572626944 on the M2 CI.516 // I observed a value of 5136793600 on the M2 CI.
517 .max_rss = 5029889638,517 .max_rss = 5368709120,
518 }));518 }));
519519
520 const unit_tests_step = b.step("test-unit", "Run the compiler source unit tests");520 const unit_tests_step = b.step("test-unit", "Run the compiler source unit tests");