diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d6685316f..de3bd7879 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,6 @@ jobs: x86_64-macos, aarch64-linux-gnu, - i386-linux-gnu, x86_64-linux-gnu, # No windows support currently. diff --git a/build.zig b/build.zig index d1a9818ca..f0f068200 100644 --- a/build.zig +++ b/build.zig @@ -24,8 +24,9 @@ pub fn build(b: *std.build.Builder) !void { const tracy = b.option( bool, "tracy", - "Enable Tracy integration (default true in Debug)", - ) orelse (mode == .Debug); + "Enable Tracy integration (default true in Debug on Linux)", + ) orelse (mode == .Debug and target.isLinux()); + const conformance = b.option( []const u8, "conformance",