File tree 3 files changed +3131
-1436
lines changed
3 files changed +3131
-1436
lines changed Original file line number Diff line number Diff line change @@ -57,16 +57,22 @@ jobs:
57
57
- name : Run TestApp
58
58
working-directory : ../TestApp/ios
59
59
run : |
60
+ set -x
60
61
SIMUDID=$(xcrun simctl list devices available -j | jq -r '.devices."com.apple.CoreSimulator.SimRuntime.iOS-17-5"[] | select(.name=="iPhone 15 Pro") | .udid')
61
62
echo "Using simulator udid[${SIMUDID}]"
62
63
xcrun simctl boot ${SIMUDID}
63
64
xcrun simctl install booted ./build/Build/Products/Release-iphonesimulator/TestApp.app
64
65
xcrun simctl spawn booted log stream --predicate 'process == "TestApp"' --level=debug > sim.log &
65
66
LOG_PID=$!
66
67
xcrun simctl launch booted com.testapp
67
- sleep 5
68
+ sleep 20
68
69
kill -SIGINT $LOG_PID
70
+ set +e
69
71
grep -E "=== V8 version\[.+\] ===" sim.log > /dev/null
72
+ BUILD_STATUS=$?
73
+ set -e
74
+ echo "BUILD_STATUS=$BUILD_STATUS"
75
+ exit $BUILD_STATUS
70
76
71
77
- name : Collect failure files
72
78
if : failure()
Original file line number Diff line number Diff line change 42
42
"devDependencies" : {
43
43
"@types/semver" : " ^7.5.8" ,
44
44
"clang-format" : " ^1.8.0" ,
45
- "expo" : " ^48 .0.0 " ,
46
- "expo-module-scripts" : " ^3.0.7 "
45
+ "expo" : " ^51 .0.17 " ,
46
+ "expo-module-scripts" : " ^3.5.2 "
47
47
},
48
48
"peerDependencies" : {
49
49
"expo" : " *"
You can’t perform that action at this time.
0 commit comments