mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-26 13:01:34 +03:00
test: disable standalone test run_output_caching on windows
https://codeberg.org/ziglang/zig/issues/31564
This commit is contained in:
@@ -1,9 +1,12 @@
|
||||
const builtin = @import("builtin");
|
||||
const std = @import("std");
|
||||
|
||||
pub fn build(b: *std.Build) void {
|
||||
const test_step = b.step("test", "Test it");
|
||||
b.default_step = test_step;
|
||||
|
||||
if (builtin.os.tag == .windows) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/31564
|
||||
|
||||
const target = b.standardTargetOptions(.{});
|
||||
const optimize = b.standardOptimizeOption(.{});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user