File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ jobs:
137
137
needs : check
138
138
# Don't run on private repo unless it is a PR.
139
139
# Disable Firestore for now since Firestore currently does not have unit tests in podspecs.
140
- if : always() && github.repository == 'Firebase/firebase-ios-sdk' && (needs.check.outputs.firestore_run_job == 'true'|| github.event.pull_request.merged) && false
140
+ if : always() && github.repository == 'Firebase/firebase-ios-sdk' && (needs.check.outputs.firestore_run_job == 'true'|| github.event.pull_request.merged)
141
141
runs-on : macOS-latest
142
142
strategy :
143
143
matrix :
Original file line number Diff line number Diff line change @@ -316,6 +316,7 @@ case "$product-$platform-$method" in
316
316
RunXcodebuild \
317
317
-workspace ' Firestore/Example/Firestore.xcworkspace' \
318
318
-scheme " Firestore_IntegrationTests_$platform " \
319
+ -enableCodeCoverage YES \
319
320
" ${xcb_flags[@]} " \
320
321
build \
321
322
test
Original file line number Diff line number Diff line change 26
26
if [ $SDK == " FirebasePerformance" ]; then
27
27
scripts/setup_bundler.sh
28
28
scripts/third_party/travis/retry.sh scripts/build.sh Performance ${platform} unit
29
+ elif [ $SDK == " FirebaseFirestore" ]; then
30
+ scripts/install_prereqs.sh Firestore ${platform} xcodebuild
31
+ scripts/third_party/travis/retry.sh scripts/build.sh Firestore ${platform} xcodebuild
29
32
else
30
33
# Run unit tests of pods and put xcresult bundles into output_path, which
31
34
# should be a targeted dir of actions/upload-artifact in workflows.
You can’t perform that action at this time.
0 commit comments