zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 7451f5d1174c1113da50c883c7b3f7e8415cea0a (tree)
parent 197ba117870bf9391b633fb1aae7dc4a22098fac
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Wed, 27 May 2026 00:28:44 +0200

test: add x86-freebsd to the module test matrix

While it's not supported as a native install architecture anymore, it's still a
supported compatibility target.

Diffstat:
Mtest/tests.zig | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -146,6 +146,15 @@ const module_test_targets = blk: { .{ .target = .{ + .cpu_arch = .x86, + .os_tag = .freebsd, + .abi = .none, + }, + .link_libc = true, + }, + + .{ + .target = .{ .cpu_arch = .x86_64, .os_tag = .freebsd, .abi = .none,