美文网首页
Jenkins iOS持续集成的相关经验

Jenkins iOS持续集成的相关经验

作者: 杨闯 | 来源:发表于2019-02-28 15:33 被阅读0次

    1、在开发过程中,可能测试需要开发打的包是同样一个包,但是需要升级版本,这些完全没有必要在文件里写死,可以测试自己来解决


    image.png

    这样,在脚本中就可以操作

    project_infoplist_path="./Info.plist"
    /usr/libexec/PlistBuddy -c "set CFBundleShortVersionString ${Version}" "${project_infoplist_path}"
    /usr/libexec/PlistBuddy -c "set CFBundleVersion ${BuildId}" "${project_infoplist_path}"
    

    相关文章

      网友评论

          本文标题:Jenkins iOS持续集成的相关经验

          本文链接:https://www.haomeiwen.com/subject/dmzhuqtx.html