From 326a817bf05527a122f9d8a69d3cb360acb7e674 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 14 Jan 2024 19:48:41 -0800 Subject: [PATCH] ci: ios build does not use code signing --- .github/workflows/test.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8883389da..994f1a57b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -90,14 +90,11 @@ jobs: - name: Build Ghostty.app run: cd macos && xcodebuild -target Ghostty - # Build the iOS target. This requires a team ID and we can reuse our - # release team ID. This doesn't upload anything so that's okay. + # Build the iOS target without code signing just to verify it works. - name: Build Ghostty iOS - env: - PROD_MACOS_NOTARIZATION_TEAM_ID: ${{ secrets.PROD_MACOS_NOTARIZATION_TEAM_ID }} run: | cd macos - xcodebuild -target Ghostty-iOS "DEVELOPMENT_TEAM=$PROD_MACOS_NOTARIZATION_TEAM_ID" + xcodebuild -target Ghostty-iOS "CODE_SIGNING_ALLOWED=NO" build-windows: runs-on: windows-2019