| ... | @@ -1040,6 +1040,12 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { | ... | @@ -1040,6 +1040,12 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { |
| 1040 | }); | 1040 | }); |
| 1041 | compile_c.addIncludePath("lib"); // for zig.h | 1041 | compile_c.addIncludePath("lib"); // for zig.h |
| 1042 | if (test_target.target.getOsTag() == .windows) { | 1042 | if (test_target.target.getOsTag() == .windows) { |
| | 1043 | if (true) { |
| | 1044 | // Unfortunately this requires about 8G of RAM for clang to compile |
| | 1045 | // and our Windows CI runners do not have this much. |
| | 1046 | step.dependOn(&these_tests.step); |
| | 1047 | continue; |
| | 1048 | } |
| 1043 | if (test_target.link_libc == false) { | 1049 | if (test_target.link_libc == false) { |
| 1044 | compile_c.subsystem = .Console; | 1050 | compile_c.subsystem = .Console; |
| 1045 | compile_c.linkSystemLibrary("kernel32"); | 1051 | compile_c.linkSystemLibrary("kernel32"); |