From 4a4712845926958829d8c17e29bfe58e23a7c2c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 25 Jun 2026 14:21:26 +0200 Subject: [PATCH] Check if this helps spurious ios build issue. Also make it more quiet --- .github/workflows/build.yml | 3 --- b-ios.sh | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2959bd6f9f..ac6a142ed5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -308,9 +308,6 @@ jobs: brew install ldid dpkg pillow # Check Xcode version xcodebuild -version - # List available Xcode versions - ls /Applications | grep Xcode - sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer - name: Create iOS Version.txt file if: matrix.id == 'ios' diff --git a/b-ios.sh b/b-ios.sh index bebe192e63..10ac7e3322 100755 --- a/b-ios.sh +++ b/b-ios.sh @@ -36,7 +36,7 @@ echo ' cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchains/ios.cmake -GXcode .. # Build PPSSPP using xcode #xcodebuild clean build -project PPSSPP.xcodeproj CODE_SIGNING_ALLOWED=NO -sdk iphoneos -configuration Release -xcodebuild -project PPSSPP.xcodeproj -scheme PPSSPP -sdk iphoneos -configuration Release clean build archive -archivePath ./build/PPSSPP.xcarchive CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO #CODE_SIGN_IDENTITY="iPhone Distribution: Your NAME / Company (TeamID)" #PROVISIONING_PROFILE="xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" +xcodebuild -project PPSSPP.xcodeproj -scheme PPSSPP -sdk iphoneos -configuration Release -quiet clean build archive -archivePath ./build/PPSSPP.xcarchive CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO #CODE_SIGN_IDENTITY="iPhone Distribution: Your NAME / Company (TeamID)" #PROVISIONING_PROFILE="xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" # Export IPA file from xcarchive (probably only works with signed build) #xcodebuild -exportArchive -archivePath ./build/PPSSPP.xcarchive -exportPath ./build -exportOptionsPlist exportOptions.plist # This folder only exist when building with xcodebuild