File tree Expand file tree Collapse file tree 2 files changed +7
-15
lines changed Expand file tree Collapse file tree 2 files changed +7
-15
lines changed Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ jobs:
301
301
export RCT_NO_LAUNCH_PACKAGER=1
302
302
cd tests
303
303
set -o pipefail
304
- ./node_modules/.bin/detox build --configuration ios.ci
304
+ ./node_modules/.bin/detox build --configuration ios.sim.debug
305
305
shell : bash
306
306
307
307
- name : Install applesimutils
@@ -334,7 +334,7 @@ jobs:
334
334
timeout-minutes : 40
335
335
run : |
336
336
cd tests
337
- ./node_modules/.bin/nyc ./node_modules/.bin/detox test --loglevel trace --debug-synchronization 200 --configuration ios.ci --cleanup
337
+ ./node_modules/.bin/nyc ./node_modules/.bin/detox test --loglevel trace --debug-synchronization 200 --configuration ios.sim.debug --cleanup
338
338
339
339
- name : Compress Simulator Log
340
340
if : always()
Original file line number Diff line number Diff line change 52
52
"configurations" : {
53
53
"ios.sim.debug" : {
54
54
"binaryPath" : " ios/build/Build/Products/Debug-iphonesimulator/testing.app" ,
55
- "build" : " set -o pipefail && xcodebuild -workspace ios/testing.xcworkspace -scheme testing -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES -quiet | xcpretty -k " ,
55
+ "build" : " xcodebuild -workspace ios/testing.xcworkspace -scheme testing -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES" ,
56
56
"type" : " ios.simulator" ,
57
57
"device" : {
58
- "type" : " iPhone 8 "
58
+ "type" : " iPhone 11 "
59
59
}
60
60
},
61
- "ios.ci " : {
62
- "binaryPath" : " ios/build/Build/Products/Debug -iphonesimulator/testing.app" ,
63
- "build" : " set -o pipefail && xcodebuild -workspace ios/testing.xcworkspace -scheme testing -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES | xcpretty -k " ,
61
+ "ios.sim.release " : {
62
+ "binaryPath" : " ios/build/Build/Products/Release -iphonesimulator/testing.app" ,
63
+ "build" : " export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace ios/testing.xcworkspace -scheme testing -configuration Release -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES" ,
64
64
"type" : " ios.simulator" ,
65
65
"device" : {
66
66
"type" : " iPhone 11"
74
74
"avdName" : " TestingAVD"
75
75
}
76
76
},
77
- "ios.sim.release" : {
78
- "binaryPath" : " ios/build/Build/Products/Release-iphonesimulator/testing.app" ,
79
- "build" : " set -o pipefail && export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace ios/testing.xcworkspace -scheme testing -configuration Release -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES -quiet | xcpretty -k" ,
80
- "type" : " ios.simulator" ,
81
- "device" : {
82
- "type" : " iPhone X"
83
- }
84
- },
85
77
"android.emu.release" : {
86
78
"binaryPath" : " android/app/build/outputs/apk/release/app-release.apk" ,
87
79
"build" : " cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd .." ,
You can’t perform that action at this time.
0 commit comments