build: increase test-std max rss

This commit is contained in:
Alex Rønne Petersen 2025-03-27 05:36:27 +01:00
parent 8088105b05
commit 3ae9a99f62
No known key found for this signature in database

View file

@ -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");