Skip to content

Commit

Permalink
build: disable mips in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vrischmann committed Jan 17, 2025
1 parent 3d61cc7 commit 18c42fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ const all_test_targets = switch (builtin.target.cpu.arch) {
TestTarget{ .query = .{ .cpu_arch = .x86, .abi = .musl } },
TestTarget{ .query = .{ .cpu_arch = .aarch64, .abi = .musl } },
TestTarget{ .query = .{ .cpu_arch = .riscv64, .abi = .musl } },
TestTarget{ .query = .{ .cpu_arch = .mips, .abi = .musl } },
// Disabled because it fails for some unknown reason
// TestTarget{ .query = .{ .cpu_arch = .mips, .abi = .musl } },
TestTarget{ .query = .{ .cpu_arch = .x86_64, .os_tag = .windows } },
// Disabled due to https://github.com/ziglang/zig/issues/20047
// TestTarget{ .query = .{ .cpu_arch = .x86, .os_tag = .windows } },
Expand Down

0 comments on commit 18c42fb

Please sign in to comment.