| ... | ... | @@ -1027,6 +1027,11 @@ pub fn addCAbiTests(b: *std.Build, skip_non_native: bool, skip_release: bool) *S |
| 1027 | 1027 | for (c_abi_targets) |c_abi_target| { |
| 1028 | 1028 | if (skip_non_native and !c_abi_target.isNative()) continue; |
| 1029 | 1029 | |
| 1030 | if (c_abi_target.isWindows() and c_abi_target.getCpuArch() == .aarch64) { |
| 1031 | // https://github.com/ziglang/zig/issues/14908 |
| 1032 | continue; |
| 1033 | } |
| 1034 | |
| 1030 | 1035 | const test_step = b.addTest(.{ |
| 1031 | 1036 | .root_source_file = .{ .path = "test/c_abi/main.zig" }, |
| 1032 | 1037 | .optimize = optimize_mode, |