| ... | @@ -7,8 +7,10 @@ pub fn build(b: *std.Build) void { | ... | @@ -7,8 +7,10 @@ pub fn build(b: *std.Build) void { |
| 7 | | 7 | |
| 8 | const optimize: std.builtin.OptimizeMode = .Debug; | 8 | const optimize: std.builtin.OptimizeMode = .Debug; |
| 9 | | 9 | |
| 10 | if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) { | 10 | if (builtin.os.tag == .windows and std.process.hasEnvVarConstant("ConEmuHWND")) { |
| 11 | // https://github.com/ziglang/zig/issues/13685 | 11 | // ConEmu injects environment variables into processes before they are executed |
| | 12 | // depending on user settings. This obviously invalidates the test, so skipping |
| | 13 | // it is the best option. |
| 12 | return; | 14 | return; |
| 13 | } | 15 | } |
| 14 | | 16 | |