commit 82632aff2c3ea8d05ecc2bb956ed0aaa7f59fa2f (tree)
parent b5fad3a40a86eb379903d6a803bdbe66dcaa5487
Author: Andrew Kelley <andrew@ziglang.org>
Date: Mon, 29 May 2023 15:53:41 -0700
build.zig: bump maxrss upper bound for std lib tests
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/build.zig b/build.zig
@@ -468,9 +468,8 @@ pub fn build(b: *std.Build) !void {
.skip_non_native = skip_non_native,
.skip_cross_glibc = skip_cross_glibc,
.skip_libc = skip_libc,
- // I observed a value of 3398275072 on my M1, and multiplied by 1.1 to
- // get this amount:
- .max_rss = 3738102579,
+ // I observed a value of 3932766208 on the M1 CI.
+ .max_rss = 4080218931,
}));
try addWasiUpdateStep(b, version);