We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37affc1 commit e4a0d62Copy full SHA for e4a0d62
scripts/build.sh
@@ -179,11 +179,13 @@ if [[ -n "${SANITIZERS:-}" ]]; then
179
done
180
fi
181
182
-# Clean the Derived Data between builds to help reduce flakiness.
183
-rm -rf ~/Library/Developer/Xcode/DerivedData
184
-
185
case "$product-$method-$platform" in
186
Firebase-xcodebuild-*)
+ # Coverage collection often cause retries to fail because of partial
+ # pre-existing data.
+ # TODO(paulb777): Find a less blunt solution to this.
187
+ rm -rf ~/Library/Developer/Xcode/DerivedData
188
+
189
RunXcodebuild \
190
-workspace 'Example/Firebase.xcworkspace' \
191
-scheme "AllUnitTests_$platform" \
0 commit comments