Commit 5ae8469653

Andrew Kelley <andrew@ziglang.org>
2023-09-23 00:07:03
CI: let's not start using --skip-oom-steps quite yet
1 parent 53d1282
ci/aarch64-macos-release.sh
@@ -46,7 +46,6 @@ $HOME/local/bin/ninja install
 
 stage3-release/bin/zig build test docs \
   --zig-lib-dir "$(pwd)/../lib" \
-  --skip-oom-steps \
   -Denable-macos-sdk \
   -Dstatic-llvm \
   -Dskip-non-native \
ci/x86_64-windows-debug.ps1
@@ -57,7 +57,6 @@ Write-Output "Main test suite..."
 & "stage3-debug\bin\zig.exe" build test docs `
   --zig-lib-dir "$ZIG_LIB_DIR" `
   --search-prefix "$PREFIX_PATH" `
-  --skip-oom-steps `
   -Dstatic-llvm `
   -Dskip-non-native `
   -Denable-symlinks-windows
ci/x86_64-windows-release.ps1
@@ -57,7 +57,6 @@ Write-Output "Main test suite..."
 & "stage3-release\bin\zig.exe" build test docs `
   --zig-lib-dir "$ZIG_LIB_DIR" `
   --search-prefix "$PREFIX_PATH" `
-  --skip-oom-steps `
   -Dstatic-llvm `
   -Dskip-non-native `
   -Denable-symlinks-windows
test/tests.zig
@@ -1052,7 +1052,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
                 .link_libc = test_target.link_libc,
                 .target = altered_target,
                 .zig_lib_dir = .{ .path = "lib" },
-                .max_rss = if (mem.eql(u8, options.name, "std")) 11199083316 else 0,
             });
             compile_c.addCSourceFile(.{
                 .file = these_tests.getEmittedBin(),