Jenkins自动构建上传到fir.im失败

今天搭建Jenkins平台构建apk并上传到fir.im上时,遇到两个问题

1、Can not found mapping or dysm file

网上发现了一个解决方案

https://www.jianshu.com/p/836579dd4837

Jenkins自动构建上传到fir.im失败_第1张图片

但是我并不想用老版本,仔细看了下日志,我配置的目录是..\app\build\outputs\apk\release

里面只有一个apk文件和一个output.json文件

但在..\app\build\outputs\mapping\release目录下有个mapping.txt文件

于是把目录改为..\app\build\outputs

结果还是失败

Root directory to find files to upload : C:\Users\diert\.jenkins\workspace\xxx\app\build\outputs
found remote files : [apk\release\app-release.apk]
Deploying archive apk\release\app-release.apk to fir.im (description="2145b3e4609b4168df62d48cf9144c7a", groups="")
found remote files : **/mapping.txt
found remote files : C:\Users\diert\.jenkins\workspace\xxx\app\build\outputs
Deployment failed : Error while get details for update id = com.tbank.tbank
Build step 'Upload to fir.im' marked build as failure
Finished: FAILURE

因为没有错误日志,不知如何分析,最后在fir.im官网上的实用工具里发现了fir-cli命令行,最终解决问题。

fir-cli是用ruby开发的,Windows上先安装rubyinstaller,按步骤安装就好,附上我的构建上传脚本

C:\Ruby26-x64\bin\fir publish C:\Users\diert\.jenkins\workspace\xxx\app\build\outputs\apk\release\app-release.apk -T 2145b3e4609b4168df62d48cf9144c7a

 

你可能感兴趣的:(Android,项目开发)