From b8d8cf5a55b62ee7e0cb32b4b6c56ff7320dcd1c Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Tue, 8 Oct 2024 10:00:09 -0700 Subject: [PATCH] CI: disable macOS cross compilation for now Signed-off-by: Stephen Gutekanst --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 562e3cc5..4aa19470 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,11 +31,13 @@ jobs: run: Xvfb :99 -screen 0 1680x720x24 > /dev/null 2>&1 & # - name: x86_64-linux -> x86_64-linux-musl # run: zig build -Dtarget=x86_64-linux-musl - - name: x86_64-linux -> x86_64-macos - run: zig build -Dtarget=x86_64-macos - - name: x86_64-linux -> aarch64-macos - run: zig build -Dtarget=aarch64-macos + # TODO(build): currently cannot link on macOS due to a bug in the Zig linker. https://github.com/hexops/mach/issues/1276 + # - name: x86_64-linux -> x86_64-macos + # run: zig build -Dtarget=x86_64-macos + # - name: x86_64-linux -> aarch64-macos + # run: zig build -Dtarget=aarch64-macos - name: x86_64-linux -> x86_64-windows + run: zig build -Dtarget=x86_64-windows-gnu - name: build run: zig build