From c68a2881e0465b0b8bc6fe2ab21d00d010d8e303 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sat, 27 Nov 2021 00:08:47 -0700 Subject: [PATCH] CI: disable x86_64-macos -> aarch64-macos cross compilation Signed-off-by: Stephen Gutekanst --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7590fdb6..7f84677e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,10 +88,11 @@ jobs: run: cd ${{ matrix.project }} && zig build test env: AGREE: true - - name: x86_64-macos -> aarch64-macos - run: cd ${{ matrix.project }} && zig build test -Dtarget=aarch64-macos - env: - AGREE: true + # TODO(build-system): https://github.com/hexops/mach/issues/108 + # - name: x86_64-macos -> aarch64-macos + # run: cd ${{ matrix.project }} && zig build test -Dtarget=aarch64-macos + # env: + # AGREE: true - name: x86_64-macos -> x86_64-windows run: cd ${{ matrix.project }} && zig build test -Dtarget=x86_64-windows - name: x86_64-macos -> x86_64-linux