zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 8453fb09a20dbf9a31c7986accbee727e511f40b (tree)
parent ba5e64ff6b3e759b83294e5cf940d940c832e13d
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Fri,  7 Feb 2025 23:35:31 -0800

build: bump max_rss of std lib tests to 5G

Diffstat:
Mbuild.zig | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.zig b/build.zig @@ -513,8 +513,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 4572626944 on the M2 CI. - .max_rss = 5029889638, + // I observed a value of 5136793600 on the M2 CI. + .max_rss = 5368709120, })); const unit_tests_step = b.step("test-unit", "Run the compiler source unit tests");