From 44fa5f069e26fd35c41ec0d0cd34ff9cf3680305 Mon Sep 17 00:00:00 2001 From: khyeji98 Date: Tue, 14 Jul 2026 00:39:40 +0900 Subject: [PATCH] =?UTF-8?q?[FIX]:=20CI=EC=97=90=EC=84=9C=20tuisttool=20?= =?UTF-8?q?=EC=9E=AC=EC=BB=B4=ED=8C=8C=EC=9D=BC=ED=95=B4=20=EB=9F=AC?= =?UTF-8?q?=EB=84=88=20OS=20=EB=B6=88=EC=9D=BC=EC=B9=98=20=ED=95=B4?= =?UTF-8?q?=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit macOS 26 기준으로 빌드·커밋된 tuisttool 바이너리가 macos-15 러너에서 로드 실패(exit 134)하므로, 각 잡에서 TuistTool.swift를 소스로 재컴파일 --- .github/workflows/testflight-deploy.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/testflight-deploy.yml b/.github/workflows/testflight-deploy.yml index d1780ac..27097f1 100644 --- a/.github/workflows/testflight-deploy.yml +++ b/.github/workflows/testflight-deploy.yml @@ -30,6 +30,11 @@ jobs: - name: Setup mise & tuist uses: jdx/mise-action@v2 + # 커밋된 tuisttool 바이너리는 로컬 macOS 26 기준으로 빌드되어 macos-15 러너에서 로드 불가 + # → 러너 OS에 맞게 소스에서 재컴파일 + - name: Build tuisttool + run: swiftc TuistTool.swift -o tuisttool + - name: Download private xcconfig run: | echo "GITHUB_ACCESS_TOKEN=${{ secrets.CONFIG_PRIVATE_REPO_TOKEN }}" > .env @@ -84,6 +89,11 @@ jobs: - name: Setup mise & tuist uses: jdx/mise-action@v2 + # 커밋된 tuisttool 바이너리는 로컬 macOS 26 기준으로 빌드되어 macos-15 러너에서 로드 불가 + # → 러너 OS에 맞게 소스에서 재컴파일 (Install dependencies·fastlane 의 ./tuisttool 호출 대비) + - name: Build tuisttool + run: swiftc TuistTool.swift -o tuisttool + - name: Setup Ruby & fastlane uses: ruby/setup-ruby@v1 with: