mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
these tests are failing on x86_64-windows too
This commit is contained in:
parent
6ba7d0c435
commit
e66e404d61
3 changed files with 3 additions and 5 deletions
|
|
@ -5,7 +5,7 @@ pub fn build(b: *std.Build) void {
|
||||||
const test_step = b.step("test", "Test it");
|
const test_step = b.step("test", "Test it");
|
||||||
b.default_step = test_step;
|
b.default_step = test_step;
|
||||||
|
|
||||||
if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {
|
if (builtin.os.tag == .windows) {
|
||||||
// https://github.com/ziglang/zig/issues/16965
|
// https://github.com/ziglang/zig/issues/16965
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void {
|
||||||
|
|
||||||
if (builtin.os.tag == .wasi) return;
|
if (builtin.os.tag == .wasi) return;
|
||||||
|
|
||||||
if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {
|
if (builtin.os.tag == .windows) {
|
||||||
// https://github.com/ziglang/zig/issues/16960
|
// https://github.com/ziglang/zig/issues/16960
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,7 @@ pub fn build(b: *std.Build) void {
|
||||||
const test_step = b.step("test", "Test it");
|
const test_step = b.step("test", "Test it");
|
||||||
b.default_step = test_step;
|
b.default_step = test_step;
|
||||||
|
|
||||||
if (@import("builtin").os.tag == .windows and
|
if (@import("builtin").os.tag == .windows) {
|
||||||
@import("builtin").cpu.arch == .aarch64)
|
|
||||||
{
|
|
||||||
// https://github.com/ziglang/zig/issues/16959
|
// https://github.com/ziglang/zig/issues/16959
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue