build: increase test-std max rss

This commit is contained in:
Alex Rønne Petersen
2025-03-27 05:36:27 +01:00
committed by GitHub
parent aac800ec65
commit dc66f4384f

View File

@@ -510,8 +510,8 @@ pub fn build(b: *std.Build) !void {
.skip_non_native = skip_non_native, .skip_non_native = skip_non_native,
.skip_libc = skip_libc, .skip_libc = skip_libc,
.use_llvm = use_llvm, .use_llvm = use_llvm,
// I observed a value of 5136793600 on the M2 CI. // I observed a value of 5605064704 on the M2 CI.
.max_rss = 5368709120, .max_rss = 6165571174,
})); }));
const unit_tests_step = b.step("test-unit", "Run the compiler source unit tests"); const unit_tests_step = b.step("test-unit", "Run the compiler source unit tests");