authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-04-24 11:58:17-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-04-24 11:58:45-07:00
logdc9472964325743e3f9e7f3cedfb942b5f44ad14
tree8548a8ac53e4d81d81fe27773761d454191cd937
parent39644fb277fb13be474ac8e370b2beadeaa0e332

CI: disable compiling std lib C backend test with clang

Unfortunately this requires about 8G of RAM for clang to compile and our Windows CI runners do not have this much.

1 files changed, 6 insertions(+), 0 deletions(-)

test/tests.zig+6
......@@ -1040,6 +1040,12 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
10401040 });
10411041 compile_c.addIncludePath("lib"); // for zig.h
10421042 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 }
10431049 if (test_target.link_libc == false) {
10441050 compile_c.subsystem = .Console;
10451051 compile_c.linkSystemLibrary("kernel32");