fastlane: Stuck at xrun

New Issue Checklist

Issue Description

Complete output when running fastlane, including the stack trace and command used

You can use: --capture_output as the last commandline argument to get that collected for you

[INSERT OUTPUT HERE]

Environment

Please run fastlane env and copy the output below. This will help us help you 👍 If you used --capture_output option please remove this block - as it is already included there.

[INSERT OUTPUT HERE]

About this issue

  • Original URL
  • State: closed
  • Created 7 years ago
  • Comments: 22 (7 by maintainers)

Commits related to this issue

Most upvoted comments

spent few hours tackling same issue. after upgrading to xcode 9, xcrun took ~8 mins.

fixed by adding extra export option -> compileBitcode:false to gym command

export_options: {
          compileBitcode: false,
          ...
}

In my case issue was reproducible even if I run xcrun individually outside fastlane context