Skip to content

Commit

Permalink
ci: skip crypto tests on windows
Browse files Browse the repository at this point in the history
Trying to buy us more time on the Windows CI.
  • Loading branch information
andrewrk committed Jan 4, 2021
1 parent 66e5e92 commit 16896a9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/std/crypto.zig
Expand Up @@ -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| {
Expand Down

0 comments on commit 16896a9

Please sign in to comment.