| author | |
| committer | |
| log | 58490f588c099fde8bf6191333e6f9d1493e407c |
| tree | f520e0d088e8aebe7eb74c19133283f69c271b5a |
| parent | f40eb5015700e3556330020130a18da46aaec9b5 |
| signature |
https://codeberg.org/ziglang/zig/issues/315641 files changed, 3 insertions(+), 0 deletions(-)
test/standalone/run_output_caching/build.zig+3| ... | ... | @@ -1,9 +1,12 @@ |
| 1 | const builtin = @import("builtin"); | |
| 1 | 2 | const std = @import("std"); |
| 2 | 3 | |
| 3 | 4 | pub fn build(b: *std.Build) void { |
| 4 | 5 | const test_step = b.step("test", "Test it"); |
| 5 | 6 | b.default_step = test_step; |
| 6 | 7 | |
| 8 | if (builtin.os.tag == .windows) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/31564 | |
| 9 | ||
| 7 | 10 | const target = b.standardTargetOptions(.{}); |
| 8 | 11 | const optimize = b.standardOptimizeOption(.{}); |
| 9 | 12 |