mirror of
https://github.com/ziglang/zig.git
synced 2026-02-21 16:54:52 +00:00
these tests are failing on x86_64-windows too
This commit is contained in:
parent
6ba7d0c435
commit
e66e404d61
@ -5,7 +5,7 @@ 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 and builtin.cpu.arch == .aarch64) {
|
||||
if (builtin.os.tag == .windows) {
|
||||
// https://github.com/ziglang/zig/issues/16965
|
||||
return;
|
||||
}
|
||||
|
||||
@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void {
|
||||
|
||||
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
|
||||
return;
|
||||
}
|
||||
|
||||
@ -4,9 +4,7 @@ pub fn build(b: *std.Build) void {
|
||||
const test_step = b.step("test", "Test it");
|
||||
b.default_step = test_step;
|
||||
|
||||
if (@import("builtin").os.tag == .windows and
|
||||
@import("builtin").cpu.arch == .aarch64)
|
||||
{
|
||||
if (@import("builtin").os.tag == .windows) {
|
||||
// https://github.com/ziglang/zig/issues/16959
|
||||
return;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user