Add pod update with retry for CocoaPods propagation issues#1618
Open
facumenzella wants to merge 4 commits intomainfrom
Open
Add pod update with retry for CocoaPods propagation issues#1618facumenzella wants to merge 4 commits intomainfrom
facumenzella wants to merge 4 commits intomainfrom
Conversation
Adds retry logic for pod update in iOS/macOS integration tests to handle CocoaPods CDN propagation delays during PHC bumps. - New `pod-update-with-retry` command with configurable retries - Retry is only enabled in deploy workflow (release branches) - Defaults: 5 retries, 5 min wait between attempts Closes RevenueCat/sdks-circleci-orb#29 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
ajpallares
approved these changes
Feb 6, 2026
The pod-update-with-retry command was running before build-flutter-project, but flutter pub get (inside build-flutter-project) needs to run first to generate the iOS/macOS project files including the Podfile. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
The pod update command requires Flutter.xcframework to exist, which is created by flutter precache. Added platform parameter to run the correct precache command for iOS/macOS. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds retry logic for
pod updatein iOS/macOS integration tests to handle CocoaPods CDN propagation delays during PHC bumps.Changes
pod-update-with-retrycommand with configurable retries (default: 5 retries, 5 min wait)enable_retryparameter toios-integration-test-cocoapodsandmacos-integration-test-cocoapodsjobsdeployworkflow (release branches) where PHC bumps runHow it works
pod update --repo-updateruns once (no retry)Closes RevenueCat/sdks-circleci-orb#29
🤖 Generated with Claude Code