From a6c05f2455f1b607653fcf5680a03d171c6b4ac5 Mon Sep 17 00:00:00 2001 From: Caio Zullo Date: Tue, 28 Oct 2025 11:41:11 +0100 Subject: [PATCH] Update CI to run with Xcode 26.0.1 and iOS 26.0.1 --- .github/workflows/CI-iOS.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI-iOS.yml b/.github/workflows/CI-iOS.yml index 095a8eb2..396b4816 100644 --- a/.github/workflows/CI-iOS.yml +++ b/.github/workflows/CI-iOS.yml @@ -22,10 +22,10 @@ jobs: - uses: actions/checkout@v4 - name: Select Xcode - run: sudo xcode-select -switch /Applications/Xcode_26.0.app + run: sudo xcode-select -switch /Applications/Xcode_26.0.1.app - name: Xcode version run: /usr/bin/xcodebuild -version - name: Build and Test - run: xcodebuild clean build test -workspace EssentialApp/EssentialApp.xcworkspace -scheme "CI_iOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 17 Pro,OS=26.0" -enableThreadSanitizer YES ONLY_ACTIVE_ARCH=YES + run: xcodebuild clean build test -workspace EssentialApp/EssentialApp.xcworkspace -scheme "CI_iOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 17 Pro,OS=26.0.1" -enableThreadSanitizer YES ONLY_ACTIVE_ARCH=YES