Skip to content

Commit 91de646

Browse files
authored
Remove CocoaPods checks from releases (#24156)
We don’t use it since #23958
1 parent 6bf127f commit 91de646

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

fastlane/lanes/release.rb

-11
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
# Check out the up-to-date default branch, the designated starting point for the code freeze
1919
Fastlane::Helper::GitHelper.checkout_and_pull(DEFAULT_BRANCH)
2020

21-
# Checks if internal dependencies are on a stable version
22-
check_pods_references
23-
2421
release_branch_name = compute_release_branch_name(options: options, version: release_version_next)
2522
ensure_branch_does_not_exist!(release_branch_name)
2623

@@ -622,11 +619,3 @@ def report_milestone_error(error_title:)
622619

623620
buildkite_annotate(style: 'warning', context: 'error-with-milestone', message: error_message) if is_ci
624621
end
625-
626-
def check_pods_references
627-
result = ios_check_beta_deps(lockfile: File.join(PROJECT_ROOT_FOLDER, 'Podfile.lock'))
628-
629-
style = result[:pods].nil? || result[:pods].empty? ? 'success' : 'warning'
630-
message = "### Checking Internal Dependencies are all on a **stable** version\n\n#{result[:message]}"
631-
buildkite_annotate(context: 'pods-check', style: style, message: message) if is_ci
632-
end

0 commit comments

Comments
 (0)