在使用iOS 自动化打包成功之后,上传到发布平台之后,邮件通知测试人员,这样就不用在另外通知测试人员了。一切以自动化(偷懒)为目标的,嘿嘿。。。。
自动化打包脚本下载地址:
https://github.com/fenglingdeyi/archiveshell
在上传到平台下面可以添加一下脚本语言发送邮件。以iOS 自动打包之后上传到发布平台后发送邮件为例:
在shell脚本中执行发送邮件的脚本sendEmail脚本如下:
curl -F "file=@${exportIpaPath}/${scheme_name}.ipa" -F "uKey=${MY_PGY_UK}" -F "_api_key=${MY_PGY_API_K}" https://qiniu-storage.xxxx.com/xxxx/app/xxxx
echo "\n\n"
echo "已运行完毕>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
这部分是上传平台成功之后
《《《《《《《《《《《《《《《《《《《《《《《
成功之后,在shell脚本中添加这些代码。这是以iOS 自动打包为IPA包上传到发布平台为例:
//得到IPA中Info.plist的路径
appInfoPlistPath="`pwd`/HuoHuo/Info.plist"
//获取版本号
bundleShortVersion=$(/usr/libexec/PlistBuddy -c "print CFBundleShortVersionString" ${appInfoPlistPath})
bundleVersion=$(/usr/libexec/PlistBuddy -c "print CFBundleVersion" ${appInfoPlistPath})
echo '///-------------'
echo '/// 邮件发送中。。。。。。。。 '
echo '///-------------'
#上传到蒲公英成功之后 发送邮件
python sendEmail.py "测试版本 iOS ${bundleShortVersion}(${bundleVersion})上传成功" "赶紧下载体验吧!https://www.xxx.com/xxxxx"
exit 0
下面是发送邮件sendEmail.py的核心代码:
#!/usr/bin/env python3
# coding=utf-8
# sendEmail title content
import sys
import smtplib
from email.mime.text import MIMEText
from email.header import Header
//配置发送的邮箱
sender = '2797xxxxx@qq.com;'
//配置接收的邮箱
receiver = 'dongkai_qiang@163.com;'
//SMTP邮件服务器 以QQ邮箱配置的
smtpserver = 'smtp.qq.com'
#smtpserver = 'smtp.exmail.qq.com'
//配置SMTP开启服务的账号和授权密码密码
username = '2797xxxxx@qq.com'
password = 'yelqxxxxxxx'
//这是配置发送邮件的python代码
def send_mail(title, content):
//title代表标题 content代表邮件内容
try:
msg = MIMEText(content,'plain','utf-8')
if not isinstance(title,unicode):
title = unicode(title, 'utf-8')
msg['Subject'] = title
msg['From'] = sender
msg['To'] = receiver
msg["Accept-Language"]="zh-CN"
msg["Accept-Charset"]="ISO-8859-1,utf-8"
smtp = smtplib.SMTP_SSL(smtpserver,465)
smtp.login(username, password)
smtp.sendmail(sender, receiver, msg.as_string())
smtp.quit()
return True
except Exception, e:
print str(e)
return False
if send_mail(sys.argv[1], sys.argv[2]):
print "done!"
else:
print "failed!"
配置SMTP邮件服务器流程:(QQ邮箱为例)
第一步:登录自己的一个QQ邮箱,设置SMTP邮件服务器。
第二步:登录之后
然后往下拉,找到下面
点击开启,出现下面
然后使用手机发送短信,发送完之后,出现下面
密码框中的授权码就是
//配置SMTP开启服务的账号
username = 'xxxxxxx@qq.com'
授权码
password = 'xxxxxxxxx'
这样就配好了。
然后以xcode自动打包上传到蒲公英发布平台为例
把自动打包脚本和发送邮件脚本放到工程目录下:
iOS 自动打包参考地址:
使用Xcode9一键打包上传到App Store或者fir和蒲公英
http://blog.csdn.net/dkq972958298/article/details/78215633
执行脚本shell.sh,如果上传到蒲公英之后,会自动发邮件提醒。
这是脚本已经一致完毕,打包成功之后上传到蒲公英发布平台,发送邮件成功。
在蒲公英里面最新版本如下图:
测试人员收到邮件内容:
点击链接:
然后就可以点击安装啦,有木有很方便啊 !
发送邮件脚本地址:https://github.com/fenglingdeyi/sendEmail
参考链接:
iOS 自动打包上传链接地址:http://blog.csdn.net/dkq972958298/article/details/78215633