Skip to content

Commit

Permalink
bump max RSS of create tar.gz release artifact build step
Browse files Browse the repository at this point in the history
  • Loading branch information
Techatrix committed Sep 20, 2024
1 parent f4d7e0b commit 2b613d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ fn release(b: *Build, target_queries: []const std.Target.Query, release_artifact
compress_cmd.step.max_rss = switch (extension) {
.zip => 160 * 1024 * 1024, // 160 MiB
.@"tar.xz" => 256 * 1024 * 1024, // 256 MiB
.@"tar.gz" => 8 * 1024 * 1024, // 8 MiB
.@"tar.gz" => 16 * 1024 * 1024, // 12 MiB
};
switch (extension) {
.zip => {
Expand Down

0 comments on commit 2b613d3

Please sign in to comment.