Skip to content

Commit 429bac4

Browse files
Remove InstanceID from Github repo (#7970)
1 parent 2c1f579 commit 429bac4

File tree

140 files changed

+38
-13958
lines changed

Some content is hidden

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

140 files changed

+38
-13958
lines changed

.github/workflows/installations.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ jobs:
3737
run: |
3838
export FIS_INTEGRATION_TESTS_REQUIRED=${{ steps.secrets.outputs.val }}
3939
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseInstallations.podspec \
40-
--platforms=${{ matrix.target }} --ignore-local-podspecs=FirebaseInstanceID.podspec
41-
40+
--platforms=${{ matrix.target }}
4241
spm:
4342
# Don't run on private repo unless it is a PR.
4443
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
@@ -126,7 +125,6 @@ jobs:
126125
export FIS_INTEGRATION_TESTS_REQUIRED=${{ steps.secrets.outputs.val }}
127126
scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseInstallations.podspec \
128127
--platforms=${{ matrix.target }} ${{ matrix.flags }} \
129-
--ignore-local-podspecs=FirebaseInstanceID.podspec
130128
131129
podspec-presubmit:
132130
# Don't run on private repo unless it is a PR.

.github/workflows/instanceid.yml

Lines changed: 0 additions & 94 deletions
This file was deleted.

.github/workflows/test_coverage.yml

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
firestore_run_job: ${{ steps.check_files.outputs.firestore_run_job }}
2323
functions_run_job: ${{ steps.check_files.outputs.functions_run_job }}
2424
inappmessaging_run_job: ${{ steps.check_files.outputs.inappmessaging_run_job }}
25-
instanceid_run_job: ${{ steps.check_files.outputs.instanceid_run_job }}
2625
messaging_run_job: ${{ steps.check_files.outputs.messaging_run_job }}
2726
performance_run_job: ${{ steps.check_files.outputs.performance_run_job }}
2827
remoteconfig_run_job: ${{ steps.check_files.outputs.remoteconfig_run_job }}
@@ -178,25 +177,6 @@ jobs:
178177
name: codecoverage
179178
path: /Users/runner/*.xcresult
180179

181-
pod-lib-lint-instanceid:
182-
needs: check
183-
# Don't run on private repo unless it is a PR.
184-
if: always() && github.repository == 'Firebase/firebase-ios-sdk' && (needs.check.outputs.instanceid_run_job == 'true'|| github.event.pull_request.merged)
185-
runs-on: macOS-latest
186-
strategy:
187-
matrix:
188-
target: [iOS]
189-
steps:
190-
- uses: actions/checkout@v2
191-
- name: Setup Bundler
192-
run: scripts/setup_bundler.sh
193-
- name: Build and test
194-
run: ./scripts/code_coverage_report/pod_test_code_coverage_report.sh --sdk=FirebaseInstanceID --platform=${{ matrix.target }}
195-
- uses: actions/upload-artifact@v2
196-
with:
197-
name: codecoverage
198-
path: /Users/runner/*.xcresult
199-
200180
pod-lib-lint-messaging:
201181
needs: check
202182
# Don't run on private repo unless it is a PR.
@@ -274,7 +254,7 @@ jobs:
274254
path: /Users/runner/*.xcresult
275255

276256
create_report:
277-
needs: [check, pod-lib-lint-abtesting, pod-lib-lint-auth, pod-lib-lint-database, pod-lib-lint-dynamiclinks, pod-lib-lint-firestore, pod-lib-lint-functions, pod-lib-lint-inappmessaging, pod-lib-lint-instanceid, pod-lib-lint-messaging, pod-lib-lint-performance, pod-lib-lint-remoteconfig, pod-lib-lint-storage]
257+
needs: [check, pod-lib-lint-abtesting, pod-lib-lint-auth, pod-lib-lint-database, pod-lib-lint-dynamiclinks, pod-lib-lint-firestore, pod-lib-lint-functions, pod-lib-lint-inappmessaging, pod-lib-lint-messaging, pod-lib-lint-performance, pod-lib-lint-remoteconfig, pod-lib-lint-storage]
278258
if: always()
279259
runs-on: macOS-latest
280260
steps:

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ FirebaseStorage/Tests/Integration/Resources/GoogleService-Info.plist
1818
# FirebaseInstallations integration tests GoogleService-Info.plist
1919
FirebaseInstallations/Source/Tests/Resources/GoogleService-Info.plist
2020

21-
# FirebaseInstanceID integration tests GoogleService-Info.plist
22-
Example/InstanceID/Resources/GoogleService-Info.plist
23-
2421
# FirebaseMessaging integration tests GoogleService-Info.plist
2522
FirebaseMessaging/Tests/IntegrationTests/Resources/GoogleService-Info.plist
2623
# FirebaseMessaging test app GoogleService-Info.plist

.travis.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,6 @@ jobs:
5555
script:
5656
- travis_retry ./scripts/if_changed.sh ./scripts/pod_lib_lint.rb FirebaseAuth.podspec --platforms=ios
5757

58-
- stage: test
59-
env:
60-
- PROJECT=InstanceID METHOD=pod-lib-lint
61-
script:
62-
- travis_retry ./scripts/if_changed.sh ./scripts/pod_lib_lint.rb FirebaseInstanceID.podspec --platforms=ios
63-
6458
- stage: test
6559
env:
6660
- PROJECT=Database PLATFORM=all METHOD=xcodebuild

CocoapodsIntegrationTest/TestEnvironments/Cocoapods_multiprojects_frameworks/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ target 'CocoapodsIntegrationTest' do
2020
pod 'FirebaseFunctions', :path => '../'
2121
pod 'FirebaseInAppMessaging', :path => '../'
2222
pod 'FirebaseInstallations', :path => '../'
23-
pod 'FirebaseInstanceID', :path => '../'
2423
pod 'FirebaseMessaging', :path => '../'
2524
pod 'FirebasePerformance', :path => '../'
2625
pod 'FirebaseStorage', :path => '../'

CocoapodsIntegrationTest/TestEnvironments/Cocoapods_multiprojects_staticLibs/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ target 'CocoapodsIntegrationTest' do
1818
pod 'FirebaseFunctions', :path => '../'
1919
pod 'FirebaseInAppMessaging', :path => '../'
2020
pod 'FirebaseInstallations', :path => '../'
21-
pod 'FirebaseInstanceID', :path => '../'
2221
pod 'FirebaseMessaging', :path => '../'
2322
pod 'FirebasePerformance', :path => '../'
2423
pod 'FirebaseStorage', :path => '../'

CoreOnly/Tests/FirebasePodTest/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ target 'FirebasePodTest' do
2525
pod 'FirebaseInAppMessaging', :path => '../../../'
2626
pod 'FirebaseInAppMessagingSwift', :path => '../../../'
2727
pod 'FirebaseInstallations', :path => '../../../'
28-
pod 'FirebaseInstanceID', :path => '../../../'
2928
pod 'FirebaseMessaging', :path => '../../../'
3029
pod 'FirebasePerformance', :path => '../../../'
3130
pod 'FirebaseRemoteConfig', :path => '../../../'

Dangerfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def labelsForModifiedFiles()
4747
labels.push("api: functions") if @has_functions_changes
4848
labels.push("api: inappmessaging") if @has_inappmessaging_changes
4949
labels.push("api: installations") if @has_installations_changes
50-
labels.push("api: instanceid") if @has_instanceid_changes
5150
labels.push("api: messaging") if @has_messaging_changes
5251
labels.push("api: performance") if @has_performance_changes
5352
labels.push("api: remoteconfig") if @has_remoteconfig_changes
@@ -99,8 +98,6 @@ has_license_changes = didModify(["LICENSE"])
9998
@has_inappmessaging_api_changes = hasChangesIn(["FirebaseInAppMessaging/Sources/Public/"])
10099
@has_installations_changes = hasChangesIn("FirebaseInstallations")
101100
@has_installations_api_changes = hasChangesIn("FirebaseInstallations/Source/Library/Public/")
102-
@has_instanceid_changes = hasChangesIn("Firebase/InstanceID/")
103-
@has_instanceid_api_changes = hasChangesIn("Firebase/InstanceID/Public/")
104101
@has_messaging_changes = hasChangesIn("FirebaseMessaging")
105102
@has_messaging_api_changes = hasChangesIn("FirebaseMessaging/Sources/Public/")
106103
@has_performance_changes = hasChangesIn("FirebasePerformance")
@@ -127,7 +124,6 @@ has_license_changes = didModify(["LICENSE"])
127124
@has_functions_api_changes ||
128125
@has_inappmessaging_api_changes ||
129126
@has_installations_api_changes ||
130-
@has_instanceid_api_changes ||
131127
@has_messaging_api_changes ||
132128
@has_performance_api_changes ||
133129
@has_remoteconfig_api_changes ||

Example/InstanceID/App/iOS/Base.lproj/LaunchScreen.storyboard

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)