zig

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

commit 02599bccb5c0b75e6dcdf950fa2dc1ece40c19f3 (tree)
parent e7e700334d1432efec7d19887c6656d956e260e7
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Tue,  3 Feb 2026 13:31:24 +0100

build: bump test-libc max_rss to 3_500_000_000

error: memory usage peaked at 3.11GB (3105054720 bytes), exceeding the declared upper bound of 2.90GB (2900000000 bytes)

Diffstat:
Mbuild.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.zig b/build.zig @@ -681,7 +681,7 @@ pub fn build(b: *std.Build) !void { .test_filters = test_filters, .test_target_filters = test_target_filters, .skip_wasm = skip_wasm, - .max_rss = 2_496_066_355, + .max_rss = 3_500_000_000, })) |test_libc_step| test_step.dependOn(test_libc_step); }