1.安装XCode。
-
2.安装jenkins;安装jenkins过程中提示安装homebrew
通过homebrew安装的工具目录: /opt/homebrew/Cellar/;
安装完成后在/User/fm/新建 .zshrc文件,配置PATH等,fm为用户名
export PATH=/opt/homebrew/bin:$PATH
再:brew install jenkins;
启动jenkins指令: brew services start jenkins
打开 http://localhost:8080/, 安装推荐的插件;
3.配置git: 应该是安装完xcode,已经自带git了
-
4.配置cocoapods
-
5.搭建 flutter 环境, 下载flutter 的SDK
cd 到fm目录
git clone -b beta https://github.com/flutter/flutter.git
切换到stable : flutter channel stable
最后通过 flutter -h 命令查看是否配置成功
执行 flutter pub get
pod install 出现问题, 重新安装了cocoapods了
-
6.出现libwebp安装不成功。
source要改为:https://github.com/webmproject/libwebp.git;
当前用户的目录: /User/fm/.cocoapods/repos/trunk/Specs/1/9/2/libwebp/1.2.0
安装了jenkins后的目录: /usr/local/.cocoapods/repos/trunk/Specs/1/9/2/libwebp/1.2.0
7.iOS打包技术方式选择:
fastlane(如果是需要打包到TestFight或AppStore,可以选用)
-
flutter的命令行,但是只能打包成.app文件,需要看下如何再包装成.ipa格式(缺点是没有dSYM符号表)
先暂时采用了方法2,打包iOS和andorid单独脚本
-
8.android 环境搭建
下载android studio
提示安装java
-
9.jenkins增加构建描述二维码或者链接
安装了插件description setterr plugin
-
问题a: 通过xcode打开工程,编译,提示Module 'connectivity' not found;用VScode编译运行又正常
执行flutter -doctor查看是否Xcode配置完成
尝试flutter sdk切换到stable,还是不行;
结果用真机,编译通过,运行正常;。
-
问题b:jenkins与本地的PATH不一致。
方法: 命令行执行 echo $PATH, 把输出的内容全部放到 jenkins的master节点的全局key-value。
-
问题c: 执行flutter相关指令提示无权限的问题
如: Creation failed, path = '/usr/local/.pub-cache' (OS Error: Permission denied, errno = 13)
方法:sudo mkdir /usr/local/.vscode/extensions
sudo chown $USER /usr/local/.vscode/extensions
-
问题d:执行 flutter build ios --profile 过程中提示: Class AMSupportURLConnectionDelegate is implemented in both /usr/lib/libauthinstall.dylib
实际上不是真的错误,要加上 -v查看详细信息:Encountered error while building for device.从现实结果看 需要在加上--no-codesign去掉签名(这样做不行,安装到手机上都需要签名)。
大概是签名的原因
尝试使用fastlane,依然是钥匙串无法保存的问题
最后解决方法:
安装插件Keychains and Provisioning Profiles Management,在系统管理先配置keychain, /User/fm/Library/Keychains/login.keychain-db复制到当前目录,改为login.keychain;把Provisioning Profiles Directory Path的配置增加/Users/fm/Library/MobileDevice/Provisioning Profiles,再次跑shell脚本,打包iOS成功了。
-
问题e: Android设置
设置sdk 路径:flutter config --android-sdk /Users/fm/Library/Android/sdk
提示 Run
flutter doctor --android-licenses
to accept the SDK licenses.执行flutter doctor --android-licenses过程中又报错:flutterException in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/annotation/XmlSchema。
解决方法: Android Studio 的SDK Manager 安装 Android SDK Command-line tools;
-
问题f: flutter packages get 执行太耗时
应该是需要加FLUTTER_STORAGE_BASE_URL, PUB_HOSTED_URL到jenkins的节点上
-
问题g: 配置fir(pgyer的替代方法)
安装fir后,将fir的bin放在PATH,并同步更新到master节点,直接指令 echo $PATH后将内容复制过去。
-
问题h: 如何局域网内访问?
修改/opt/homebrew/Cellar/jenkins/2.292/homebrew.mxcl.jenkins.plist
/Users/fm/Library/LaunchAgents/homebrew.mxcl.jenkins.plist
里面的ip为Mac电脑IP
重启jenkins后可以访问了。
-
问题i: 需要保存历史url和二维码,两者在jenkins输出时都要有
添加二维码参考:https://blog.csdn.net/weixin_34309543/article/details/87994341
-
i.1: 采用自建服务器的方式,和下载链接的方式,进行ipa的下载安装如:
https://blog.csdn.net/yangxuan0261/article/details/114967194
把四个文件html,plist,ipa,二维码图片文件上传到腾讯云oss,可以得到对应的网络下载链接,需要通过python修改html、plist、生成ipa, 生成对应网址的二维码图片并上传到oss。
先安装python3: brew install python3
利用python3进行html,plist内容模版修改,并生成二维码图片,把这四个文件上传到oss,android的只有html,apk,二维码三个文件
理论上应该没问题,还未实验,代码重点在python进行文件修改和oss上传。
-
i.2: 利用curl上传文件解析返回参数
具体见jenkins上代码
-
问题j: mac的jenkins,查看输入的详细记录,还有url和二维码的显示,需要多点一步default,能否去掉?
大概是jenkins版本的原因,也可能是配置项的原因。
-
问题k: 设置从节点
未完成
-
问题l: Jenkins上pod install出错,用vpn后后提示访问老的仓库地址,也不知道啥原因?
在mini上手动执行pod install,pods库会缓存;
在打包机器上执行pod cache list, 显示的路径是/usr/local/Library/Caches/CocoaPods/pod
在Jenkins上执行pod cache list,显示的是/Users/fm/Library/Caches/CocoaPods/Pods/
将对应的库从local的pods库,复制到fm的pods库;
后续需求
- jenkins添加域名
- Android支持渠道打包,包含渠道选择、版本号选择、build号选择,并上传到对应渠道
- 支持选择分支