Conversation
WalkthroughThis change removes CircleCI configuration and scripts, deletes CircleCI-specific Fastlane lanes, updates Fastlane artifact paths, and adjusts Prettier ignore rules. Android and iOS Fastfiles now rely on non-CircleCI lanes with updated build artifact locations. No public API changes; all modifications are CI/deployment and tooling related. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant Dev as Developer
participant VCS as Git Repo
participant CI as CircleCI (Removed)
participant A-FL as Android Fastlane
participant I-FL as iOS Fastlane
Note over CI: Previous flow (removed)
Dev->>VCS: Push commit / tag
VCS-->>CI: Trigger workflow
CI->>CI: Run executors, caches, build, test
CI->>A-FL: Invoke CircleCI lanes (Android)
CI->>I-FL: Invoke CircleCI lane (iOS)
CI-->>Dev: Artifacts, approvals, uploads
rect rgba(255,230,230,0.4)
Note over CI: Entire workflow removed
end
sequenceDiagram
autonumber
participant Dev as Developer
participant A-FL as Android Fastlane
participant I-FL as iOS Fastlane
Note over Dev,A-FL: Current high-level flow
Dev->>A-FL: Run beta / internal_app_sharing / other lanes
A-FL->>A-FL: Use updated paths app/build/outputs/bundle/...
Dev->>I-FL: Run beta lane
I-FL->>I-FL: Build and upload with adjusted IPA/DSYM paths
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
Proposed changes
We have migrated all CI related stuff from Circle CI to Github, so this PR remove CircleCI related stuff.
Issue(s)
How to test or reproduce
Screenshots
Types of changes
Checklist
Further comments
Summary by CodeRabbit