Skip to content
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

Remove CocoaPods checks from releases #24156

Merged
merged 1 commit into from
Mar 6, 2025
Merged
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
11 changes: 0 additions & 11 deletions fastlane/lanes/release.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
# Check out the up-to-date default branch, the designated starting point for the code freeze
Fastlane::Helper::GitHelper.checkout_and_pull(DEFAULT_BRANCH)

# Checks if internal dependencies are on a stable version
check_pods_references

release_branch_name = compute_release_branch_name(options: options, version: release_version_next)
ensure_branch_does_not_exist!(release_branch_name)

Expand Down Expand Up @@ -622,11 +619,3 @@ def report_milestone_error(error_title:)

buildkite_annotate(style: 'warning', context: 'error-with-milestone', message: error_message) if is_ci
end

def check_pods_references
result = ios_check_beta_deps(lockfile: File.join(PROJECT_ROOT_FOLDER, 'Podfile.lock'))

style = result[:pods].nil? || result[:pods].empty? ? 'success' : 'warning'
message = "### Checking Internal Dependencies are all on a **stable** version\n\n#{result[:message]}"
buildkite_annotate(context: 'pods-check', style: style, message: message) if is_ci
end