From 4af09b43a88a14a2cd9632afb02c7839e5009e2d Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sat, 31 Jan 2026 23:24:42 +1100 Subject: [PATCH] fix(ci): use correct task names for cross-compilation - common:setup:docker instead of setup:docker - darwin:build, linux:build, windows:build instead of build:darwin, etc. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/cross-compile-test-v3.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cross-compile-test-v3.yml b/.github/workflows/cross-compile-test-v3.yml index efdc946bb..5207d6ac6 100644 --- a/.github/workflows/cross-compile-test-v3.yml +++ b/.github/workflows/cross-compile-test-v3.yml @@ -94,13 +94,13 @@ jobs: - name: Setup Docker cross-compile image working-directory: test-cross-compile/crosstest - run: task setup:docker + run: task common:setup:docker - name: Cross-compile for ${{ matrix.target_os }}/${{ matrix.target_arch }} working-directory: test-cross-compile/crosstest run: | echo "Cross-compiling for ${{ matrix.target_os }}/${{ matrix.target_arch }}..." - task build:${{ matrix.target_os }} ARCH=${{ matrix.target_arch }} + task ${{ matrix.target_os }}:build ARCH=${{ matrix.target_arch }} echo "Cross-compilation successful!" ls -la bin/