aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-05-29 15:53:41 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-05-29 15:53:41 -0700
commit82632aff2c3ea8d05ecc2bb956ed0aaa7f59fa2f (patch)
tree1dadce834604d7fefc185c76deeab83960a5321d /build.zig
parentb5fad3a40a86eb379903d6a803bdbe66dcaa5487 (diff)
downloadzig-82632aff2c3ea8d05ecc2bb956ed0aaa7f59fa2f.tar.gz
zig-82632aff2c3ea8d05ecc2bb956ed0aaa7f59fa2f.zip
build.zig: bump maxrss upper bound for std lib tests
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig5
1 files changed, 2 insertions, 3 deletions
diff --git a/build.zig b/build.zig
index aaef526af1..73d8ba4af1 100644
--- 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);