Skip to content

Commit 90d0c26

Browse files
authored
Merge 953ac39 into 161c046
2 parents 161c046 + 953ac39 commit 90d0c26

File tree

137 files changed

+4764
-8993
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+4764
-8993
lines changed

.github/workflows/combine.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ on:
3434
# - 'FirebaseAuth/**'
3535
# - 'FirebaseFunctions/**'
3636
# - 'Firestore/**'
37-
# - 'FirebaseStorageInternal/**'
3837
# - 'FirebaseStorage/**'
3938

4039
schedule:
@@ -90,10 +89,10 @@ jobs:
9089
run: gem install xcpretty
9190
- name: Install Secret GoogleService-Info.plist
9291
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/storage-db-plist.gpg \
93-
FirebaseStorageInternal/Tests/Integration/Resources/GoogleService-Info.plist "$plist_secret"
92+
FirebaseStorage/Tests/Integration/Resources/GoogleService-Info.plist "$plist_secret"
9493
- name: Install Credentials.h
9594
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/Storage/Credentials.h.gpg \
96-
FirebaseStorageInternal/Tests/Integration/Credentials.h "$plist_secret"
95+
FirebaseStorage/Tests/ObjCIntegration/Credentials.h "$plist_secret"
9796
- name: Install Credentials.swift
9897
run: |
9998
scripts/decrypt_gha_secret.sh scripts/gha-encrypted/Storage/Credentials.swift.gpg \

.github/workflows/storage.yml

Lines changed: 5 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
run: gem install xcpretty
3737
- name: Install Secret GoogleService-Info.plist
3838
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/storage-db-plist.gpg \
39-
FirebaseStorageInternal/Tests/Integration/Resources/GoogleService-Info.plist "$plist_secret"
39+
FirebaseStorage/Tests/Integration/Resources/GoogleService-Info.plist "$plist_secret"
4040
- name: Install Credentials.h
4141
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/Storage/Credentials.h.gpg \
42-
FirebaseStorageInternal/Tests/Integration/Credentials.h "$plist_secret"
42+
FirebaseStorage/Tests/ObjCIntegration/Credentials.h "$plist_secret"
4343
- name: Install Credentials.swift
4444
run: |
4545
scripts/decrypt_gha_secret.sh scripts/gha-encrypted/Storage/Credentials.swift.gpg \
@@ -58,8 +58,6 @@ jobs:
5858
cache_key: ${{ matrix.os }}
5959
- name: Initialize xcodebuild
6060
run: scripts/setup_spm_tests.sh
61-
- name: Objective-C Unit Tests
62-
run: scripts/third_party/travis/retry.sh ./scripts/build.sh StorageUnit iOS spm
6361
- name: Swift Unit Tests
6462
run: scripts/third_party/travis/retry.sh ./scripts/build.sh FirebaseStorageUnit iOS spm
6563

@@ -78,22 +76,7 @@ jobs:
7876
- name: Initialize xcodebuild
7977
run: scripts/setup_spm_tests.sh
8078
- name: Unit Tests
81-
run: scripts/third_party/travis/retry.sh ./scripts/build.sh StorageUnit ${{ matrix.target }} spm
82-
83-
catalyst:
84-
# Don't run on private repo unless it is a PR.
85-
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
86-
runs-on: macos-12
87-
steps:
88-
- uses: actions/checkout@v2
89-
- uses: mikehardy/buildcache-action@50738c6c77de7f34e66b870e4f8ede333b69d077
90-
with:
91-
cache_key: ${{ matrix.os }}
92-
- uses: ruby/setup-ruby@v1
93-
- name: Setup Bundler
94-
run: scripts/setup_bundler.sh
95-
- name: Setup project and Build for Catalyst
96-
run: scripts/test_catalyst.sh FirebaseStorageInternal test FirebaseStorageInternal-Unit-unit
79+
run: scripts/third_party/travis/retry.sh ./scripts/build.sh FirebaseStorageUnit ${{ matrix.target }} spm
9780

9881
quickstart:
9982
# Don't run on private repo unless it is a PR.
@@ -124,15 +107,14 @@ jobs:
124107
strategy:
125108
matrix:
126109
target: [ios, tvos, macos, watchos]
127-
podspec: [FirebaseStorage.podspec, FirebaseStorageInternal.podspec]
128110
steps:
129111
- uses: actions/checkout@v2
130112
- uses: ruby/setup-ruby@v1
131113
- name: Setup Bundler
132114
run: scripts/setup_bundler.sh
133115
- name: Build and test
134116
run: |
135-
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb ${{ matrix.podspec }} --test-specs=unit --platforms=${{ matrix.target }}
117+
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseStorage.podspec --test-specs=unit --platforms=${{ matrix.target }}
136118
137119
storage-cron-only:
138120
# Don't run on private repo.
@@ -141,12 +123,11 @@ jobs:
141123
strategy:
142124
matrix:
143125
target: [ios, tvos, macos, watchos]
144-
podspec: [FirebaseStorage.podspec, FirebaseStorageInternal.podspec]
145126
needs: pod-lib-lint
146127
steps:
147128
- uses: actions/checkout@v2
148129
- uses: ruby/setup-ruby@v1
149130
- name: Setup Bundler
150131
run: scripts/setup_bundler.sh
151132
- name: PodLibLint Storage Cron
152-
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb ${{ matrix.podspec }} --platforms=${{ matrix.target }} --use-static-frameworks --skip-tests
133+
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseStorage.podspec --platforms=${{ matrix.target }} --use-static-frameworks --skip-tests

.github/workflows/watchos-sample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- 'FirebaseABTesting/**'
88
- 'FirebaseDatabase/**'
99
- 'FirebaseRemoteConfig/**'
10-
- 'FirebaseStorageInternal/**'
10+
- 'FirebaseStorage/**'
1111
# Sample
1212
- 'Example/watchOSSample/**'
1313
# Firebase Podspec

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ FirebaseDatabase/Tests/Resources/GoogleService-Info.plist
1111
FirebaseRemoteConfig/Tests/Sample/GoogleService-Info.plist
1212

1313
# FirebaseStorage integration tests GoogleService-Info.plist
14-
FirebaseStorageInternal/Tests/Integration/Resources/GoogleService-Info.plist
14+
FirebaseStorage/Tests/Integration/Resources/GoogleService-Info.plist
1515

1616
# FirebaseInstallations integration tests GoogleService-Info.plist
1717
FirebaseInstallations/Source/Tests/Resources/GoogleService-Info.plist
@@ -24,8 +24,7 @@ FirebaseMessaging/Apps/AdvancedSample/SampleWatchWatchKitExtension/GoogleService
2424
FirebaseMessaging/Apps/AdvancedSample/AppClips/GoogleService-Info.plist
2525

2626
# Credentials for Firebase Storage Integration Tests
27-
FirebaseStorageInternal/Tests/Integration/Credentials.h
28-
FirebaseStorageInternal/Tests/SwiftIntegration/Credentials.swift
27+
FirebaseStorage/Tests/ObjCIntegration/Credentials.h
2928
FirebaseStorage/Tests/Integration/Credentials.swift
3029

3130
# FirebaseMLModelDownloader integration tests GoogleService-Info.plist

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ Alternatively, the script can be work on branch names or filenames.
271271
```
272272

273273
```console
274-
./scripts/style.sh FirebaseStorageInternal/Sources/FIRStorage.m
274+
./scripts/style.sh FirebaseStorage/Sources/Storage.swift
275275
```
276276

277277
<details>

CocoapodsIntegrationTest/TestEnvironments/Cocoapods_multiprojects_frameworks/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ target 'CocoapodsIntegrationTest' do
2828
pod 'FirebaseMessagingInterop', :path => '../'
2929
pod 'FirebasePerformance', :path => '../'
3030
pod 'FirebaseStorage', :path => '../'
31-
pod 'FirebaseStorageInternal', :path => '../'
3231
end
3332

3433
# Using the new speed-enhancing features available with CocoaPods 1.7+

CoreOnly/NOTICES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,6 @@ FirebasePerformance
278278
FirebaseRemoteConfig
279279
FirebaseRemoteConfigSwift
280280
FirebaseStorage
281-
FirebaseStorageInternal
282281
GTMSessionFetcher
283282
GoogleDataTransport
284283
PromisesObjC

CoreOnly/Tests/FirebasePodTest/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ target 'FirebasePodTest' do
2929
pod 'FirebasePerformance', :path => '../../../'
3030
pod 'FirebaseRemoteConfig', :path => '../../../'
3131
pod 'FirebaseStorage', :path => '../../../'
32-
pod 'FirebaseStorageInternal', :path => '../../../'
3332

3433
# Get dependent pods from the repo also
3534
pod 'FirebaseAppCheckInterop', :path => '../../../'

Dangerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ has_license_changes = didModify(["LICENSE"])
117117
@has_remoteconfig_changes = hasChangesIn("FirebaseRemoteConfig")
118118
@has_remoteconfig_api_changes = hasChangesIn("FirebaseRemoteConfig/Sources/Public/")
119119
@has_storage_changes = hasChangesIn("FirebaseStorage")
120-
@has_storage_api_changes = hasChangesIn("FirebaseStorageInternal/Sources/Public/")
121120

122121
@has_releasetooling_changes = hasChangesIn("ReleaseTooling/")
123122

Example/watchOSSample/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ target 'SampleWatchAppWatchKitExtension' do
2323

2424
pod 'Firebase/Messaging', :path => '../../'
2525
pod 'Firebase/Storage', :path => '../../'
26-
pod 'FirebaseStorageInternal', :path => '../../'
2726
pod 'Firebase/RemoteConfig', :path => '../../'
2827
pod 'Firebase/ABTesting', :path => '../../'
2928
pod 'Firebase/Database', :path => '../../'

0 commit comments

Comments
 (0)