From 16896a9d8b4015ebebd36ee558d49446a756b3f5 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 4 Jan 2021 15:57:54 -0700 Subject: [PATCH] ci: skip crypto tests on windows Trying to buy us more time on the Windows CI. --- lib/std/crypto.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/std/crypto.zig b/lib/std/crypto.zig index f97db98b0b..da6ec2edf0 100644 --- a/lib/std/crypto.zig +++ b/lib/std/crypto.zig @@ -140,6 +140,9 @@ pub const random = &@import("crypto/tlcsprng.zig").interface; const std = @import("std.zig"); test "crypto" { + const please_windows_dont_oom = std.Target.current.os.tag == .windows; + if (please_windows_dont_oom) return error.SkipZigTest; + inline for (std.meta.declarations(@This())) |decl| { switch (decl.data) { .Type => |t| {