fastlane: Gym always cleans project, no way to set timeout to not be 10s
New Issue Checklist
- Updated fastlane to the latest version
- I have read the Contribution Guidelines
Issue Description
When running gym with the “–clean false” arguments, it still cleans project. If it takes longer than 10s (on very slow hard drive or while you are unzipping large files, etc.) it will never complete.
Unfortunately there doesn’t seem to be a way to set that 10s timeout, FASTLANE_XCODE_LIST_TIMEOUT environment variable doesn’t do it.
Environment
fastlane version (run fastlane -v):1.102.0
Do you use bundler to execute fastlane (i.e. bundle exec fastlane)? NO
Do you use a Ruby environment manager (e.g. chruby, rbenv, rvm)? NO
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Comments: 33 (8 by maintainers)
@ohayonI’m using Xcode 8.3.3I solved the issue by placing this line before invoke fastlane:
export FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT=100Why is it a “feature request”, not a bug, that the documented --clean false option doesn’t actually do anything?
Try it, run
gym --clean false,gym --clean true,gym --clean FALSE, every way it shows the xcodebuild clean step. Thank you for looking into this.