diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-05-29 15:53:41 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-05-29 15:53:41 -0700 |
| commit | 82632aff2c3ea8d05ecc2bb956ed0aaa7f59fa2f (patch) | |
| tree | 1dadce834604d7fefc185c76deeab83960a5321d /build.zig | |
| parent | b5fad3a40a86eb379903d6a803bdbe66dcaa5487 (diff) | |
| download | zig-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.zig | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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); |
