We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3614b3d commit d2cfa0dCopy full SHA for d2cfa0d
1 file changed
.github/workflows/ios_navigation_tests.yml
@@ -34,10 +34,7 @@ jobs:
34
35
- name: Boot iPhone 15 Pro (iOS 17.2) Simulator
36
run: |
37
- UDID=$(xcrun simctl list devices available | \
38
- grep -i "iPhone 15 Pro (17.2" | \
39
- grep -oE '([0-9A-F-]{36})' | head -n 1)
40
-
+ UDID=$(xcrun simctl list devices available | grep -i "iPhone 15 Pro" | grep -i "17.2" | awk -F'[()]' '{print $2}' | head -n 1)
41
if [ -z "$UDID" ]; then
42
echo "::error::No matching iPhone 15 Pro (iOS 17.2) simulator found!"
43
exit 1
0 commit comments