yum install screen
环境配置:
10.12.6 (16G29) + Version 9.1 (9B55) + git + jenkins
在尝试了99次之后,我们终于成功了
image.png
完成效果:可选Debug、Stg、Release环境
image.png
自动上传ios ipa server效果
image.png
网上找了很多文章走了很多坑,最后发现,还是用脚本打包最方便,网上的资料几乎都是上传什么login.keychain之类。
废话不多说,直接上配置吧。
一、有个环境模式的选择参数可以设置
二、源码下载,用密码或者ssh key都可以,然后这里加载我们选择的tag或者branch
image.png三、shell打包,这里我没有执行pod install
,因为项目里的百度地图更新起来太慢,所以为了方便就直接把pods文件夹也放到git管理中去了。
然后打包完成后用了scp
命令上传到有ios ipa server
的服务器上,关于时间戳可安装一个插件Build Timestamp
#!/bin/bash
# origin/v1.2 -> branch-v1.2
branchOrTag=${branchOrTag/origin\//branch-}
# V4.5.3线上版本 -> V4.5.3online
branchOrTag=${branchOrTag/线上版本/online}
# V4.5.3上线版本 -> V4.5.3online
branchOrTag=${branchOrTag/上线版本/online}
# V4.5.3上线 -> V4.5.3online
branchOrTag=${branchOrTag/上线/online}
# V4.5.3上下版本 -> V4.5.3online
branchOrTag=${branchOrTag/上下版本/online}
jenkinsDownloadedPath=${JENKINS_HOME}/workspace/${JOB_NAME}/
workspaceName="YourProjName"
schemeName="YourProjName"
workspacePath=$jenkinsDownloadedPath$workspaceName".xcworkspace"
archivePath=$jenkinsDownloadedPath"/build/YourProjFolderName"${env}${BUILD_TIMESTAMP}".xcarchive"
exportPath=$jenkinsDownloadedPath"/ipa/"$env
exportOptionsPlistPath=$jenkinsDownloadedPath"exportOptions.plist"
xcodebuildDefaultIpaPath=$jenkinsDownloadedPath"ipa/"$env"/YourProjName.ipa"
uploadToServerIpaPath=$jenkinsDownloadedPath"ipa/"$env"/YourProjFolderName"-${branchOrTag}-${env}-${BUILD_TIMESTAMP}".ipa"
serverIpaFolderPath="devops@你们公司服务器ip地址:/home/devops/yourIOSIpa"
xcodebuild archive -workspace ${workspacePath} -scheme ${schemeName} -configuration $env -archivePath ${archivePath}
xcodebuild -exportArchive -archivePath ${archivePath} -configuration $env -exportPath ${exportPath} -exportOptionsPlist ${exportOptionsPlistPath}
cp ${xcodebuildDefaultIpaPath} ${uploadToServerIpaPath}
scp ${uploadToServerIpaPath} ${serverIpaFolderPath}
关于这个exportOptionsPlist.plist其实就是之前文章里的那个文件,为了方便这个我已经放git管理了,上面的一些目录根据实际项目文件夹来变更处理吧。
处理tag与branch
image.png
这种场景 下我们得把plist文件重新放一下
邮件发送需求,我们得装个插件
image.png
然后配置下默认的地址和邮箱地址
image.png image.png image.png
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>${ENV, var="JOB_NAME"}-第${BUILD_NUMBER}次构建日志</title>
</head>
<body leftmargin="8" marginwidth="0" topmargin="8" marginheight="4"
offset="0">
<table width="95%" cellpadding="0" cellspacing="0"
style="font-size: 11pt; font-family: Tahoma, Arial, Helvetica, sans-serif">
<tr>
<td><br />
<b><font color="#0B610B">构建信息</font></b>
<hr size="2" width="100%" align="center" /></td>
</tr>
<tr>
<td>
<ul>
<li>ipa下载地址 : <a href="https://172.16.101.195:12345/download">https://172.16.101.195:12345/download</a></li>
<li>项目名称 : ${PROJECT_NAME}</li>
<li>构建编号 : 第${BUILD_NUMBER}次构建</li>
<li>触发原因: ${CAUSE}</li>
<li>构建日志: <a href="${BUILD_URL}console">${BUILD_URL}console</a></li>
<li>构建 Url : <a href="${BUILD_URL}">${BUILD_URL}</a></li>
<li>工作目录 : <a href="${PROJECT_URL}ws">${PROJECT_URL}ws</a></li>
<li>项目 Url : <a href="${PROJECT_URL}">${PROJECT_URL}</a></li>
</ul>
</td>
</tr>
<tr>
<td><b><font color="#0B610B">变更集</font></b>
<hr size="2" width="100%" align="center" /></td>
</tr>
<tr>
<td>${JELLY_SCRIPT,template="html"}<br/>
<hr size="2" width="100%" align="center" /></td>
</tr>
</table>
</body>
</html>
最后我们在Jenkins项目里配置
image.png然后这里可以根据实际情况选择
image.png
实际需求,可能我们还需要一次同时打出三种环境的包,还有可能要求三种环境的包都能装在一个手机上,每个环境的app icon不一样,用于区别,每晚凌晨两三点左右自动打包,jenkins结合Sonar代码检查(这个正在实践中)
网友评论