From 2337d9d832c09fceb925cafb0cc5835b38c04a14 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sun, 28 Nov 2021 20:48:39 -0700 Subject: [PATCH] CI: re-enable x86_64-macos -> aarch64-macos cross compilation Signed-off-by: Stephen Gutekanst --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f84677e..7590fdb6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,11 +88,10 @@ jobs: run: cd ${{ matrix.project }} && zig build test 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 -> 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