在空白mac电脑上搭建整个环境
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了
新建了目录: ad-app(Jenkins会下载工程目录,该步骤忽略)
cd 到对应目录
执行 git clone https://gitlab.focusmedia.tech/ad-platform/ad-serving-app.git
代码下载完成。
4. 配置cocoa pods
见: https://www.jianshu.com/p/478abd2aa26a
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 出现问题, 重新安装了cocoa pods了
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打包技术方式选择:
7.1 fastlane(如果是需要打包到TestFight或AppStore,可以选用):
7.2 flutter的命令行,但是只能打包成.app文件,需要看下如何再包装成.ipa格式(缺点是没有dSYM符号表);
先暂时采用了方法2,打包iOS和andorid单独脚本;
8. android 环境搭建
a. 下载android studio
b. 提示安装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。
本想在自定义目录作为工作目录,这样要配置git相关,但是基于https的git始终无法配置成功;
所以只能在jenkins上加git配置;
拉取的目录会在/Users/fm/.jenkins/workspace/分众直投app构建/default/
遇到问题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的节点上
有现成的蒲公英插件的方法,使用也很简单;
但是有生产环境和测试环境,暂时将测试环境包放在蒲公英上,生产环境包放在fir上;
问题g: 配置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
问题j: mac的jenkins,查看输入的详细记录,还有url和二维码的显示,需要多点一步default,能否去掉?
大概是jenkins版本的原因,也可能是配置项的原因。
方法i-1: 采用自建服务器的方式,和下载链接的方式,进行ipa的下载安装如: https://blog.csdn.net/yangxuan0261/article/details/114967194
把四个文件html,plist,ipa,二维码图片文件上传到腾讯云oss,可以得到对应的网络下载链接,需要通过python修改html、plist、生成ipa, 生成对应网址的二维码图片并上传到oss。
先安装python3: brew install python3
方法i-2: 利用curl上传文件解析返回参数,
PGY_API_KEY="5f010b236d590943e9abddade218b39c"
XCS_PRODUCT="${WORKSPACE}/app/ios-${model}.ipa"
PGY_UPLOAD_RESULT=`curl -F "file=@$XCS_PRODUCT" -F "_api_key=$PGY_API_KEY" https://www.pgyer.com/apiv2/app/upload`
echo $PGY_UPLOAD_RESULT
export PYTHONIOENCODING=utf8
PGY_APP_NAME=`echo ${PGY_UPLOAD_RESULT} |python -c "import sys, json; print json.load(sys.stdin)['data']['buildName']"|sed 's/[[:space:]]//g'`
PGY_APP_VERSION=`echo ${PGY_UPLOAD_RESULT}|python -c "import sys, json; print json.load(sys.stdin)['data']['buildVersion']"|sed 's/[[:space:]]//g'`
PGY_APP_QRCODEURL=`echo ${PGY_UPLOAD_RESULT}|python -c "import sys, json; print json.load(sys.stdin)['data']['buildQRCodeURL']" |sed 's/[[:space:]]//g'`
PGY_APP_UPDATED=`echo ${PGY_UPLOAD_RESULT}|python -c "import sys, json; print json.load(sys.stdin)['data']['buildUpdated']" |sed 's/[[:space:]]//g'`
PGY_APP_IDENTIFIER=`echo ${PGY_UPLOAD_RESULT}|python -c "import sys, json; print json.load(sys.stdin)['data']['buildIdentifier']" |sed 's/[[:space:]]//g'`
PGY_APP_KEY=`echo ${PGY_UPLOAD_RESULT}|python -c "import sys, json; print json.load(sys.stdin)['data']['buildKey']" |sed 's/[[:space:]]//g'`
PGY_APP_BUILD_VERSION=`echo ${PGY_UPLOAD_RESULT}|python -c "import sys, json; print json.load(sys.stdin)['data']['buildBuildVersion']" |sed 's/[[:space:]]//g'`
PGY_APP_DOWNLOAD_URL="https://www.pgyer.com/$PGY_APP_KEY"
echo $PGY_APP_DOWNLOAD_URL
echo $PGY_APP_QRCODEURL
echo "appDescription: <img src=\"${PGY_APP_QRCODEURL}\">\
<br><span><a href=\"${PGY_APP_DOWNLOAD_URL}\">${PGY_APP_DOWNLOAD_URL}</a></span>"
在“Set build description”插件中,设置Regular expression: appDescription:(.*), Description: \1
问题k: 设置从节点
运维添加从节点后,发现原有的任务无法复制,需要重新安装插件和任务的设置
问题:从主jenkins设置git时,提示错误如下
Building remotely onmac-10.187.7.30in workspace /opt/workspace/分众直投flutter-iOS-测试环境Installing JDK jdk-8u181-oth-JPRDownloading JDK fromhttps://download.oracle.com/otn/java/jdk/8u181-b13/96a7b8442fe848ef90c96a2fad6ed6d1/jdk-8u181-macosx-x64.dmgYour Oracle account doesn't appear valid. Please specify a valid username/password
先尝试安装sdk:
为什么提示下载jdk,而且提示下载旧版本的sdk?要先同意协议后在打开链接下载。
+ 安装神策sdk失败,用vpn后,又提示,unable to access 'https://gitlab.focusmedia.tech/ad-platform/ad-serving-app.git/': Failed to connect to gitlab.focusmedia.tech port 443: Operation timed out,这里是老的git地址,这个老的地址是在哪里缓存的呢?
在打包机器上执行pod cache list, 显示的路径是/usr/local/Library/Caches/CocoaPods/pod
在Jenkins上执行,显示的是/Users/fm/Library/Caches/CocoaPods/Pods/
> 解决方法,将对应的库从local的pods库,复制到fm的pods库;
> Jenkins与本地使用的pods库的目录不一样,先本地pod install把对应的库安装成功后,再手动复制过去,下次Jenkins就可以从Jenkins对应的pods缓存去查找了;