From 02599bccb5c0b75e6dcdf950fa2dc1ece40c19f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 3 Feb 2026 13:31:24 +0100 Subject: [PATCH 1/2] 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) --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 84cbba38bd..8006715735 100644 --- 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); } From 6ce0dd1a81d52e5e2e331e88628c89e989dc15ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Thu, 18 Dec 2025 14:26:11 +0100 Subject: [PATCH 2/2] ci: run test-libc on x86_64-linux-debug-llvm and x86_64-linux-release --- ci/x86_64-linux-debug-llvm.sh | 1 + ci/x86_64-linux-release.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/ci/x86_64-linux-debug-llvm.sh b/ci/x86_64-linux-debug-llvm.sh index 6ef1b5a009..26d3911c13 100755 --- a/ci/x86_64-linux-debug-llvm.sh +++ b/ci/x86_64-linux-debug-llvm.sh @@ -54,6 +54,7 @@ stage3-debug/bin/zig build \ stage3-debug/bin/zig build test docs \ --maxrss ${ZSF_MAX_RSS:-0} \ -Dlldb=$HOME/deps/lldb-zig/Debug-e0a42bb34/bin/lldb \ + -Dlibc-test-path=$HOME/deps/libc-test-f2bac77 \ -fqemu \ -fwasmtime \ -Dstatic-llvm \ diff --git a/ci/x86_64-linux-release.sh b/ci/x86_64-linux-release.sh index 99781406e2..94e6e93bbd 100755 --- a/ci/x86_64-linux-release.sh +++ b/ci/x86_64-linux-release.sh @@ -59,6 +59,7 @@ stage3-release/bin/zig build \ stage3-release/bin/zig build test docs \ --maxrss ${ZSF_MAX_RSS:-0} \ -Dlldb=$HOME/deps/lldb-zig/Release-e0a42bb34/bin/lldb \ + -Dlibc-test-path=$HOME/deps/libc-test-f2bac77 \ -fqemu \ -fwasmtime \ -Dstatic-llvm \