diff options
| author | 2024-07-29 10:53:05 +0200 | |
|---|---|---|
| committer | 2024-07-29 10:53:05 +0200 | |
| commit | 7f4be7d30b126affb66b390c7825addb1c3506bd (patch) | |
| tree | 8c81fe397da00674271277ad6a5da935e0417fca /build.zig | |
| parent | update fixme (diff) | |
| parent | Disable x86-windows tests due to Zig miscompilation (diff) | |
| download | zig-sqlite-7f4be7d30b126affb66b390c7825addb1c3506bd.tar.gz zig-sqlite-7f4be7d30b126affb66b390c7825addb1c3506bd.tar.xz zig-sqlite-7f4be7d30b126affb66b390c7825addb1c3506bd.zip | |
Merge pull request #164 from squeek502/skip-x86-windowszig-0.13.0zig-0.13.0
Disable x86-windows tests due to Zig miscompilation
Diffstat (limited to '')
| -rw-r--r-- | build.zig | 9 |
1 files changed, 6 insertions, 3 deletions
| @@ -41,7 +41,8 @@ const ci_targets = switch (builtin.target.cpu.arch) { | |||
| 41 | }, | 41 | }, |
| 42 | .windows => [_]TestTarget{ | 42 | .windows => [_]TestTarget{ |
| 43 | TestTarget{ .query = .{ .cpu_arch = .x86_64, .abi = .gnu }, .bundled = true }, | 43 | TestTarget{ .query = .{ .cpu_arch = .x86_64, .abi = .gnu }, .bundled = true }, |
| 44 | TestTarget{ .query = .{ .cpu_arch = .x86, .abi = .gnu }, .bundled = true }, | 44 | // Disabled due to https://github.com/ziglang/zig/issues/20047 |
| 45 | // TestTarget{ .query = .{ .cpu_arch = .x86, .abi = .gnu }, .bundled = true }, | ||
| 45 | }, | 46 | }, |
| 46 | .macos => [_]TestTarget{ | 47 | .macos => [_]TestTarget{ |
| 47 | TestTarget{ .query = .{ .cpu_arch = .x86_64 }, .bundled = true }, | 48 | TestTarget{ .query = .{ .cpu_arch = .x86_64 }, .bundled = true }, |
| @@ -61,13 +62,15 @@ const all_test_targets = switch (builtin.target.cpu.arch) { | |||
| 61 | TestTarget{ .query = .{ .cpu_arch = .riscv64, .abi = .musl }, .bundled = true }, | 62 | TestTarget{ .query = .{ .cpu_arch = .riscv64, .abi = .musl }, .bundled = true }, |
| 62 | TestTarget{ .query = .{ .cpu_arch = .mips, .abi = .musl }, .bundled = true }, | 63 | TestTarget{ .query = .{ .cpu_arch = .mips, .abi = .musl }, .bundled = true }, |
| 63 | TestTarget{ .query = .{ .cpu_arch = .x86_64, .os_tag = .windows }, .bundled = true }, | 64 | TestTarget{ .query = .{ .cpu_arch = .x86_64, .os_tag = .windows }, .bundled = true }, |
| 64 | TestTarget{ .query = .{ .cpu_arch = .x86, .os_tag = .windows }, .bundled = true }, | 65 | // Disabled due to https://github.com/ziglang/zig/issues/20047 |
| 66 | // TestTarget{ .query = .{ .cpu_arch = .x86, .os_tag = .windows }, .bundled = true }, | ||
| 65 | TestTarget{ .query = .{ .cpu_arch = .x86_64, .os_tag = .macos }, .bundled = true }, | 67 | TestTarget{ .query = .{ .cpu_arch = .x86_64, .os_tag = .macos }, .bundled = true }, |
| 66 | TestTarget{ .query = .{ .cpu_arch = .aarch64, .os_tag = .macos }, .bundled = true }, | 68 | TestTarget{ .query = .{ .cpu_arch = .aarch64, .os_tag = .macos }, .bundled = true }, |
| 67 | }, | 69 | }, |
| 68 | .windows => [_]TestTarget{ | 70 | .windows => [_]TestTarget{ |
| 69 | TestTarget{ .query = .{ .cpu_arch = .x86_64, .abi = .gnu }, .bundled = true }, | 71 | TestTarget{ .query = .{ .cpu_arch = .x86_64, .abi = .gnu }, .bundled = true }, |
| 70 | TestTarget{ .query = .{ .cpu_arch = .x86, .abi = .gnu }, .bundled = true }, | 72 | // Disabled due to https://github.com/ziglang/zig/issues/20047 |
| 73 | // TestTarget{ .query = .{ .cpu_arch = .x86, .abi = .gnu }, .bundled = true }, | ||
| 71 | }, | 74 | }, |
| 72 | .freebsd => [_]TestTarget{ | 75 | .freebsd => [_]TestTarget{ |
| 73 | TestTarget{ .query = .{}, .bundled = false }, | 76 | TestTarget{ .query = .{}, .bundled = false }, |