iOS 自动化打包ipa
一、环境配置
- fastlane 安装
fastlane git地址 https://github.com/fastlane/fastlane
安装:
按照git中说的是sudo gem install fastlane --verbose
, 但是发现如果你直接使用命令的话,在OS 10.11会出现
ERROR: While executing gem ... (Errno::EPERM)
Operation not permitted - /usr/bin/commander here.
这个问题很普遍的,原因移步百度,这里的解决方案是:
sudo gem install -n /usr/local/bin Fastlane
算了我估计你们也很懒,上边的问题是因为Apple的rootless,可以彻底的解决的办法在这里 链接 ,以后就不会出现Operation not permitted
了,永远不会确保xcode-select是最新版本, 在终端执行(具体xcode-select是什么,移步百度)
xcode-select --install