今日看到一個(gè)不錯(cuò)的自動(dòng)打包iOS項(xiàng)目的Python腳本质况,很有意思愕宋,能有效提高工作效率,結(jié)合自身開發(fā)需要结榄,嘗試了一下中贝,感覺(jué)棒棒噠。
一臼朗、準(zhǔn)備工作
1.安裝OS X command line tools
xcode-select --intall
2.安裝fir-cli
gem install fir-cli
我這邊在安裝的過(guò)程中報(bào)錯(cuò):
ERROR: Could not find a valid gem 'fir-cli' (>= 0), here is why:
Unable to download data from https://rubygems.org/
- Errno::ECONNRESET: Connection reset by peer
- SSL_connect (https://rubygems.org/latest_specs.4.8.gz)
- Unable to download data from http://ruby.taobao.org/
- bad response Not Found 404 (http://ruby.taobao.org/latest_specs.4.8.gz)
發(fā)現(xiàn)之前配置的 http://ruby.taobao.org/ 已經(jīng)不能用了邻寿,在這里將其刪除,并換成新的 https://ruby.taobao.org/ 即可:
gem sources --remove http://rubygems.org/
gem sources --add https://ruby.taobao.org/
然后再次執(zhí)行安裝fir-cli的命令
我這邊安裝過(guò)程中又出錯(cuò)视哑,提示:
Fetching: thor-0.19.1.gem (100%)
ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the
/Library/Ruby/Gems/2.0.0 directory.
將安裝命令換成:
sudo gem install fir-cli
在提示下輸入開機(jī)密碼即成功安裝了fir-cli绣否。
二、簡(jiǎn)單使用
1.登錄fir.im
在終端中輸入fir login命令后再輸入用戶在fir.im官網(wǎng)的API token挡毅,即可成功登錄fir.im蒜撮。
2.打包并上傳
fir build_ipa .xcodeproj所在路徑 -o ipa輸出路徑 -p -T APItoken -c 版本更新說(shuō)明
注意-o -p -T -c 這些大小寫。
其他詳細(xì)使用跪呈,請(qǐng)參照以下鏈接段磨。
參考: