| author | |
| committer | |
| log | 0bf7c4c4d70614fb809e84a515ba5b76bde57e19 |
| tree | 1ca884b7c76079137d19df3650ffb777305a75b4 |
| parent | 605c01c2dc7cfd5449a4b175bbc6e04a0bb75207 |
| signature |
They add way too much run time to the jobs.
https://codeberg.org/ziglang/zig/issues/309301 files changed, 5 insertions(+), 0 deletions(-)
test/tests.zig+5| ... | ... | @@ -2648,6 +2648,11 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { |
| 2648 | 2648 | continue; |
| 2649 | 2649 | } |
| 2650 | 2650 | |
| 2651 | if (target.cpu.arch == .riscv64 and target.ofmt == .c) { | |
| 2652 | // https://codeberg.org/ziglang/zig/issues/30930 | |
| 2653 | continue; | |
| 2654 | } | |
| 2655 | ||
| 2651 | 2656 | if (std.mem.eql(u8, options.name, "libc")) { |
| 2652 | 2657 | // The libc API tests obviously need to link libc. So for test |
| 2653 | 2658 | // target entries where we wouldn't link libc by default, skip the |