Update 16pro.yml

This commit is contained in:
sangeeths03
2025-05-13 11:34:57 +05:30
committed by GitHub
parent 0e9a8eaa21
commit e2f9ffd5a7
+5 -5
View File
@@ -1,16 +1,16 @@
name: iPhone 16 Pro Simulator Issue name: Use Xcode 16.2 and Reproduce Simulator Issue
on: on:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
reproduce-error: test-xcode-16_2:
runs-on: macos-14 runs-on: macos-14
steps: steps:
- name: Show macOS and Xcode version - name: Switch to Xcode 16.2
run: | run: |
sw_vers sudo xcode-select -s /Applications/Xcode_16.2.app
xcodebuild -version xcodebuild -version
- name: List all available simulators - name: List all available simulators
@@ -18,7 +18,7 @@ jobs:
echo "Available simulators:" echo "Available simulators:"
xcrun simctl list devices xcrun simctl list devices
- name: Attempt to find and boot iPhone 16 Pro - name: Find and boot iPhone 16 Pro simulator
run: | run: |
echo "Searching for iPhone 16 Pro simulator..." echo "Searching for iPhone 16 Pro simulator..."
DEVICE_ID=$(xcrun simctl list devices | grep 'iPhone 16 Pro' | grep -v unavailable | awk -F '[()]' '{print $2}' | head -n 1) DEVICE_ID=$(xcrun simctl list devices | grep 'iPhone 16 Pro' | grep -v unavailable | awk -F '[()]' '{print $2}' | head -n 1)