File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 21
21
22
22
prepare_react_native_project!
23
23
24
- IN_CI = ENV [ 'CI' ] == 'true'
25
-
26
24
@prefix_path = "../react-native"
27
25
28
26
linkage = ENV [ 'USE_FRAMEWORKS' ]
Original file line number Diff line number Diff line change @@ -83,10 +83,11 @@ runTests() {
83
83
buildForTesting () {
84
84
# shellcheck disable=SC1091
85
85
source " $ROOT /scripts/.tests.env"
86
- xcodebuild build-for-testing \
86
+ xcodebuild build-for-testing OTHER_LDFLAGS= " -Xlinker -v " -verbose \
87
87
-workspace RNTesterPods.xcworkspace \
88
88
-scheme RNTester \
89
- -sdk iphonesimulator
89
+ -sdk iphonesimulator \
90
+ -derivedDataPath " /tmp/RNTesterBuild"
90
91
}
91
92
92
93
runTestsOnly () {
@@ -155,7 +156,7 @@ main() {
155
156
156
157
# Build and run tests.
157
158
RESULT=-1
158
- MAX_RETRY=3
159
+ MAX_RETRY=1
159
160
for (( i= 1 ; i<= MAX_RETRY; i++ ))
160
161
do
161
162
echo " Attempt #$i of running tests..."
You can’t perform that action at this time.
0 commit comments