mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
disable self-hosted aarch64 tests
These can be re-enabled when the assertion failures in the backend are fixed, which does not need to block this branch.
This commit is contained in:
parent
315bc10a0c
commit
a72c411fdb
1 changed files with 36 additions and 34 deletions
|
|
@ -187,29 +187,30 @@ const test_targets = blk: {
|
|||
.link_libc = true,
|
||||
},
|
||||
|
||||
.{
|
||||
.target = .{
|
||||
.cpu_arch = .aarch64,
|
||||
.os_tag = .linux,
|
||||
.abi = .none,
|
||||
},
|
||||
.use_llvm = false,
|
||||
.use_lld = false,
|
||||
.optimize_mode = .ReleaseFast,
|
||||
.strip = true,
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
.cpu_arch = .aarch64,
|
||||
.cpu_model = .{ .explicit = &std.Target.aarch64.cpu.neoverse_n1 },
|
||||
.os_tag = .linux,
|
||||
.abi = .none,
|
||||
},
|
||||
.use_llvm = false,
|
||||
.use_lld = false,
|
||||
.optimize_mode = .ReleaseFast,
|
||||
.strip = true,
|
||||
},
|
||||
// Disabled due to https://codeberg.org/ziglang/zig/pulls/30232#issuecomment-9203351
|
||||
//.{
|
||||
// .target = .{
|
||||
// .cpu_arch = .aarch64,
|
||||
// .os_tag = .linux,
|
||||
// .abi = .none,
|
||||
// },
|
||||
// .use_llvm = false,
|
||||
// .use_lld = false,
|
||||
// .optimize_mode = .ReleaseFast,
|
||||
// .strip = true,
|
||||
//},
|
||||
//.{
|
||||
// .target = .{
|
||||
// .cpu_arch = .aarch64,
|
||||
// .cpu_model = .{ .explicit = &std.Target.aarch64.cpu.neoverse_n1 },
|
||||
// .os_tag = .linux,
|
||||
// .abi = .none,
|
||||
// },
|
||||
// .use_llvm = false,
|
||||
// .use_lld = false,
|
||||
// .optimize_mode = .ReleaseFast,
|
||||
// .strip = true,
|
||||
//},
|
||||
|
||||
.{
|
||||
.target = .{
|
||||
|
|
@ -1204,17 +1205,18 @@ const test_targets = blk: {
|
|||
},
|
||||
},
|
||||
|
||||
.{
|
||||
.target = .{
|
||||
.cpu_arch = .aarch64,
|
||||
.os_tag = .macos,
|
||||
.abi = .none,
|
||||
},
|
||||
.use_llvm = false,
|
||||
.use_lld = false,
|
||||
.optimize_mode = .ReleaseFast,
|
||||
.strip = true,
|
||||
},
|
||||
// Disabled due to https://codeberg.org/ziglang/zig/pulls/30232#issuecomment-9203351
|
||||
//.{
|
||||
// .target = .{
|
||||
// .cpu_arch = .aarch64,
|
||||
// .os_tag = .macos,
|
||||
// .abi = .none,
|
||||
// },
|
||||
// .use_llvm = false,
|
||||
// .use_lld = false,
|
||||
// .optimize_mode = .ReleaseFast,
|
||||
// .strip = true,
|
||||
//},
|
||||
|
||||
.{
|
||||
.target = .{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue