ci: skip crypto tests on windows

Trying to buy us more time on the Windows CI.
This commit is contained in:
Andrew Kelley 2021-01-04 15:57:54 -07:00
parent 66e5e92a3e
commit 16896a9d8b

View File

@ -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| {