iOS build taking infinite time to build - Previously it was working fine with the same yaml configuration. #2793
Replies: 1 comment 7 replies
-
Hello @yasirali133314, |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?
Flutter (Dart)
Steps to reproduce
Here is my codemagic iOS workflow.
ios-workflow:
name: IOS Workflow
max_build_duration: 120
instance_type: mac_mini_m1
integrations:
app_store_connect: Codemagic Store Key
environment:
ios_signing:
distribution_type: app_store
bundle_identifier: com.app.myApp
vars:
APP_STORE_APPLE_ID: my_apple_id_here
flutter: stable
xcode: latest
cocoapods: default
scripts:
- name: Set up code signing settings on Xcode project
script: |
xcode-project use-profiles
- name: Get Flutter packages
script: |
flutter packages pub get
- name: Install pods
script: |
find . -name "Podfile" -execdir pod install ;
- name: Flutter build ipa and automatic versioning
script: |
flutter build ipa --release
--export-options-plist=/Users/builder/export_options.plist
artifacts:
- build/ios/ipa/.ipa
- /tmp/xcodebuild_logs/.log
- flutter_drive.log
publishing:
email:
recipients:
- yasirali8889905@gmail.com
notify:
success: true
failure: true
app_store_connect:
auth: integration
submit_to_testflight: true
submit_to_app_store: false
Expected results
It should submit build to the testflight.
Actual results
Infinite loading on building IPA
Build id (optional)
No response
Beta Was this translation helpful? Give feedback.
All reactions