File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -300,6 +300,7 @@ jobs:
300
300
export SKIP_BUNDLING=1
301
301
export RCT_NO_LAUNCH_PACKAGER=1
302
302
cd tests
303
+ set -o pipefail
303
304
./node_modules/.bin/detox build --configuration ios.ci
304
305
shell : bash
305
306
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" : " xcodebuild -workspace ios/testing.xcworkspace -scheme testing -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES -quiet | xcpretty -k" ,
55
+ "build" : " set -o pipefail && xcodebuild -workspace ios/testing.xcworkspace -scheme testing -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES -quiet | xcpretty -k" ,
56
56
"type" : " ios.simulator" ,
57
57
"device" : {
58
58
"type" : " iPhone 8"
59
59
}
60
60
},
61
61
"ios.ci" : {
62
62
"binaryPath" : " ios/build/Build/Products/Debug-iphonesimulator/testing.app" ,
63
- "build" : " xcodebuild -workspace ios/testing.xcworkspace -scheme testing -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES | xcpretty -k" ,
63
+ "build" : " set -o pipefail && xcodebuild -workspace ios/testing.xcworkspace -scheme testing -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES | xcpretty -k" ,
64
64
"type" : " ios.simulator" ,
65
65
"device" : {
66
66
"type" : " iPhone 11"
76
76
},
77
77
"ios.sim.release" : {
78
78
"binaryPath" : " ios/build/Build/Products/Release-iphonesimulator/testing.app" ,
79
- "build" : " 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" ,
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
80
"type" : " ios.simulator" ,
81
81
"device" : {
82
82
"type" : " iPhone X"
You can’t perform that action at this time.
0 commit comments