ci: build on freebsd

This commit is contained in:
Jeffrey C. Ollie
2025-08-30 13:58:25 -05:00
parent b0d9b0dee0
commit 0bc90b2a20
3 changed files with 71 additions and 7 deletions

View File

@@ -131,6 +131,13 @@ pub const VTable = struct {
};
test Benchmark {
// This test fails on FreeBSD so skip:
//
// /home/runner/work/ghostty/ghostty/src/benchmark/Benchmark.zig:165:5: 0x3cd2de1 in decltest.Benchmark (ghostty-test)
// try testing.expect(result.duration > 0);
// ^
if (builtin.os.tag == .freebsd) return error.SkipZigTest;
const testing = std.testing;
const Simple = struct {
const Self = @This();