Skip to content

[Infra] Bump select Swift podspecs that support Swift 6 and remove no-op CI arg for them #15038

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/core_internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
uses: ./.github/workflows/common_cocoapods.yml
with:
product: FirebaseCoreInternal
supports_swift6: true

core-internal-cron-only:
# Don't run on private repo.
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/firebaseai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ jobs:
uses: ./.github/workflows/common_cocoapods.yml
with:
product: FirebaseAI
supports_swift6: true
setup_command: scripts/update_vertexai_responses.sh

quickstart:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/functions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
uses: ./.github/workflows/common_cocoapods.yml
with:
product: FirebaseFunctions
supports_swift6: true
setup_command: FirebaseFunctions/Backend/start.sh synchronous

spm-integration:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/sessions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,3 @@ jobs:
uses: ./.github/workflows/common_cocoapods.yml
with:
product: FirebaseSessions
supports_swift6: true
1 change: 0 additions & 1 deletion .github/workflows/shared-swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,3 @@ jobs:
uses: ./.github/workflows/common_cocoapods.yml
with:
product: FirebaseSharedSwift
supports_swift6: true
2 changes: 1 addition & 1 deletion FirebaseAI.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Build AI-powered apps and features with the Gemini API using the Firebase AI SDK
'FirebaseAI/Sources/**/*.swift',
]

s.swift_version = '5.9'
s.swift_version = '6.0'

s.framework = 'Foundation'
s.ios.framework = 'UIKit'
Expand Down
2 changes: 1 addition & 1 deletion FirebaseCoreInternal.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Pod::Spec.new do |s|
"#{s.module_name}_Privacy" => 'FirebaseCore/Internal/Sources/Resources/PrivacyInfo.xcprivacy'
}

s.swift_version = '5.9'
s.swift_version = '6.0'

s.dependency 'GoogleUtilities/NSData+zlib', '~> 8.1'

Expand Down
2 changes: 1 addition & 1 deletion FirebaseFunctions.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Cloud Functions for Firebase.
:tag => 'CocoaPods-' + s.version.to_s
}

s.swift_version = '5.9'
s.swift_version = '6.0'

ios_deployment_target = '15.0'
osx_deployment_target = '10.15'
Expand Down
2 changes: 1 addition & 1 deletion FirebaseSessions.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Pod::Spec.new do |s|
tvos_deployment_target = '15.0'
watchos_deployment_target = '7.0'

s.swift_version = '5.9'
s.swift_version = '6.0'

s.ios.deployment_target = ios_deployment_target
s.osx.deployment_target = osx_deployment_target
Expand Down
2 changes: 1 addition & 1 deletion FirebaseSharedSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Firebase products. FirebaseSharedSwift is not supported for non-Firebase usage.
:tag => 'CocoaPods-' + s.version.to_s
}

s.swift_version = '5.9'
s.swift_version = '6.0'

ios_deployment_target = '15.0'
osx_deployment_target = '10.15'
Expand Down
Loading