diff options
Diffstat (limited to '')
| -rw-r--r-- | build.zig | 14 |
1 files changed, 12 insertions, 2 deletions
| @@ -97,9 +97,19 @@ const ci_targets = switch (builtin.target.cpu.arch) { | |||
| 97 | // .bundled = true, | 97 | // .bundled = true, |
| 98 | // }, | 98 | // }, |
| 99 | }, | 99 | }, |
| 100 | else => unreachable, | 100 | else => [_]TestTarget{ |
| 101 | TestTarget{ | ||
| 102 | .target = .{}, | ||
| 103 | .bundled = false, | ||
| 104 | }, | ||
| 105 | }, | ||
| 106 | }, | ||
| 107 | else => [_]TestTarget{ | ||
| 108 | TestTarget{ | ||
| 109 | .target = .{}, | ||
| 110 | .bundled = false, | ||
| 111 | }, | ||
| 101 | }, | 112 | }, |
| 102 | else => unreachable, | ||
| 103 | }; | 113 | }; |
| 104 | 114 | ||
| 105 | const all_test_targets = switch (builtin.target.cpu.arch) { | 115 | const all_test_targets = switch (builtin.target.cpu.arch) { |