|
@@ -19,13 +19,14 @@ function buildProjForDetox() {
|
19
|
19
|
shellUtils.exec.execSync(`echo 'travis_fold:start:xcodebuild'`);
|
20
|
20
|
const cmd = `RCT_NO_LAUNCH_PACKAGER=true
|
21
|
21
|
cd ios && xcodebuild
|
22
|
|
- -scheme ${scheme} build
|
|
22
|
+ -scheme ${scheme}
|
|
23
|
+ ${release ? 'clean build' : 'build'}
|
23
|
24
|
-project playground.xcodeproj
|
24
|
25
|
-sdk iphonesimulator
|
25
|
26
|
-derivedDataPath ./DerivedData/playground`;
|
26
|
27
|
|
27
|
28
|
if (hasXcpretty()) {
|
28
|
|
- shellUtils.exec.execSync(`${cmd} | xcpretty`);
|
|
29
|
+ shellUtils.exec.execSync(`${cmd} | xcpretty && exit \${PIPESTATUS[0]}`);
|
29
|
30
|
} else {
|
30
|
31
|
shellUtils.exec.execSync(`${cmd}`);
|
31
|
32
|
}
|