Skip to content

Fix fluwx CocoaPods iOS workflow setup#763

Open
Copilot wants to merge 2 commits into
mainfrom
copilot/fix-ios-build-fluwx-cocoapods
Open

Fix fluwx CocoaPods iOS workflow setup#763
Copilot wants to merge 2 commits into
mainfrom
copilot/fix-ios-build-fluwx-cocoapods

Conversation

Copilot AI commented Jun 12, 2026

Copy link
Copy Markdown

The iOS build — fluwx (CocoaPods) Actions job was building the example app without preparing the CocoaPods workspace first. In that state, Xcode attempted SwiftPM resolution and failed on the local FlutterFramework package path.

  • Workflow change

    • Align the fluwx CocoaPods lane with the existing fluwx_no_pay CocoaPods lane.
    • Install Pods before invoking flutter build ios --no-codesign.
  • Failure mode addressed

    • Prevent the CocoaPods job from falling through to SwiftPM package resolution.
    • Ensure the iOS example is built from the generated Pods workspace in CocoaPods mode.
  • Updated job snippet

    - name: Build fluwx example (CocoaPods)
      run: |
        cd packages/fluwx/example
        flutter pub get
        cd ios
        pod repo update
        pod install
        cd ..
        flutter build ios --no-codesign

Copilot AI changed the title [WIP] Fix the failing GitHub Actions job iOS build — fluwx (CocoaPods) Fix fluwx CocoaPods iOS workflow setup Jun 12, 2026
Copilot AI requested a review from JarvanMo June 12, 2026 08:05
@JarvanMo JarvanMo marked this pull request as ready for review June 12, 2026 08:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants