美文网首页脚本
2019-02-22 iOS自动打包脚本(绝对不用xcode打

2019-02-22 iOS自动打包脚本(绝对不用xcode打

作者: 太阳的小号 | 来源:发表于2019-02-22 14:20 被阅读0次

    首先感谢一下无数大佬在网上的分享,才能让我完成这个脚本


    由于之前的编辑模式没有切换,导致这篇文章看起来挺恶心的,我在2019-03-14 iOS自动打包脚本ProvisioningStyle字段(对之前文章的补充)对这篇文进行了分解,建议先看分解的文章,本篇是完整代码


    介绍一下,脚本使用背景,很多做react-native开发的工程师不一定用的是Mac电脑,所以打iOS的ipa包就没有Xcode工具去图形界面上操作,比如勾选证书、pp文件之类的,而且网上大佬们分享的,大都是Xcode8之前的使用脚本,而Xcode8开始有了自动管理签名文件功能,并且是默认的,所以很多脚本都挂了,针对这个问题有的脚本中也做了处理,但对那些从来没有用Xcode打开并操作过的项目就没有用了。下面我就是直接把自己的脚本代码贴上来了,请各位指教,因为我不会脚本语言,这份脚本是我从网上搜索的各种资料,还请教了一些写后台的同事,所以与很多不足,希望大家可以指点一二,帮我优化一下,谢谢。

    ```

    #!/bin/sh

    #  Created by yin.yan on 2019/2/15

    #  ******************** ios一键式打包并上传到pgyer生成二维码并直接扫描安装 ********************

    # 预先定义对应的环境变量

    envionmentVariables(){

        echo "\033[37;45m*************************  step1:初始化环境变量  *************************  \033[0m"

        # 打包时间初始值

        SECONDS=0

        # 工作空间 (例:若是用Cocopods管理的.xcworkspace项目,赋值true;用Xcode默认创建的.xcodeproj,赋值false)

        is_workspace="false"

        # 指定要打包编译的方式 : Release or Debug (默认是Release)

        build_configuration="Release"

        # pgyer账户的pgyer_api_key, 这个api_key换成自己pgyer账号生成的api_key即可 (需要替换)

        pgyer_api_key="*******蒲公英账号的key**********" 

        #add new

        # 证书

        code_sign_identity="*********证书名********"

        # 描述文件UUID

        mobileprovision_uuid="***********配置文件的UUID**********"

        # method,打包的方式。方式分别为 development, ad-hoc, app-store, enterprise 。必填

        method="enterprise"

        #

        enable_bitcode="NO"

        # 打包脚本文件夹路径

        script_path=$(pwd)

        # 工程中Target对应的配置plist文件名称, Xcode默认的配置文件为info.plist

        info_plist_name="info"

        # 导出ipa所需要的对应的plist文件路径 (默认为EnterpriseExportOptionsPlist.plist)

        ExportOptionsPlistPath="$script_path/EnterpriseExportOptionsPlist.plist"

        # 返回上上级目录,进入项目工程根目录

        # 工程根目录

        project_dir="$(pwd)/ios"

        cd "$project_dir"

        # 获取工程名称(LSBuyer)

        project_name=`find . -name *.xcodeproj | awk -F "[/.]" '{print $(NF-1)}'`

        # 指定项目的scheme名称(需要替换)

        scheme_name="$project_name" 

        # 指定bundleid 名为 com.testtest.项目名

        bundle_identifier="com.testtest.$project_name"

        # 获取对应的plist文件

        info_plist_path="$project_dir/$project_name/$info_plist_name.plist"

        # 修改info.plist文件中 CFBundleIdentifier 值

        /usr/libexec/PlistBuddy -c "Set :CFBundleIdentifier $bundle_identifier" $info_plist_path

        # 对应plist中的Bundle versions string, short

        bundle_short_version=`/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" "$info_plist_path"`

        # 对应plist中的Bundle version

        bundle_version=`/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "$info_plist_path"`

        #add new

        # 对应plist中的Bundle identifier

        # bundle_identifier=`/usr/libexec/PlistBuddy -c "Print CFBundleIdentifier" "$info_plist_path"`

        # 包文件所在地址

        pbxproj_path="$script_path/ios/${project_name}.xcodeproj/project.pbxproj"

        # /Users/yz/Desktop/testAAA/ios/testAAA.xcodeproj/project.pbxproj

        # 指定输出ipa文件夹路径

        export_path="$project_dir/build"

        # 指定输出xcarchive路径

        export_archive_path="$export_path/$scheme_name.xcarchive"

        # 删除旧.xcarchive文件

        rm -rf "$export_archive_path"

        # 指定输出ipa路径

        export_ipa_path="$export_path"

        # 指定输出ipa名称 : scheme_name + bundle_short_version

        ipa_name="$scheme_name-v$bundle_short_version"

    }

    Xcodebuild(){

        echo "--------------------脚本配置参数检查--------------------"

        echo "\033[33;1mis_workspace=${is_workspace} "

        echo "project_name=${project_name}"

        echo "scheme_name=${scheme_name}"

        echo "build_configuration=${build_configuration}"

        echo "code_sign_identity=${code_sign_identity}"

        echo "mobileprovision_uuid=${mobileprovision_uuid}"

        echo "ExportOptionsPlistPath=${ExportOptionsPlistPath}"

        echo "pbxproj_path=${pbxproj_path}"

        echo "bundle_identifier=${bundle_identifier} \033[0m"

        echo "\033[37;45m*************************  step2:开始构建项目  *************************  \033[0m"

        sleep 1

        if [ -d "$export_path" ]; then

            echo $export_path

        else

            mkdir $export_path

        fi

        # 在 project.pbxproj文件中药添加三行代码,不会啊。。。

        rootObject=`/usr/libexec/PlistBuddy -c "Print :rootObject" $pbxproj_path`

        targetList=`/usr/libexec/PlistBuddy -c "Print :objects:${rootObject}:targets" $pbxproj_path | sed -e '/Array {/d' -e '/}/d' -e 's/^[ \t]*//'`

        targets=(`echo $targetList`)

        targetsID=${targets[0]}

        /usr/libexec/PlistBuddy -c "Add :objects:${rootObject}:attributes:TargetAttributes:${targetsID}:" $pbxproj_path

        /usr/libexec/PlistBuddy -c "Add :objects:${rootObject}:attributes:TargetAttributes:${targetsID}:ProvisioningStyle String Manual" $pbxproj_path

        # xcode8 之后会自动管理证书签名,需要修改承受懂管理 (该命令yi9nggai可以删除,但是先保留着)

        /usr/libexec/PlistBuddy -c "Set :objects:${rootObject}:attributes:TargetAttributes:${targetsID}:ProvisioningStyle  Manual" $pbxproj_path

        # xcode8 之后会自动管理证书签名,需要修改承受懂管理(该命令在文件格式变成plist之后失效,但仍需保留)

        sed -i "" s/'ProvisioningStyle = Automatic;'/'ProvisioningStyle = Manual;'/g ${project_name}.xcodeproj/project.pbxproj

        # xcode8 之后强行将所有 Automatic 改为 Manual

        sed -i "" s/'Automatic'/'Manual'/g ${project_name}.xcodeproj/project.pbxproj

        # 判断编译的项目类型是workspace还是project

        if $is_workspace ; then

            # 编译前做clear操作

            xcodebuild clean -workspace ${project_name}.xcworkspace \

            -scheme ${scheme_name} \

            -configuration ${build_configuration}

            # archive操作

            xcodebuild archive -workspace ${project_name}.xcworkspace \

            -scheme ${scheme_name} \

            -configuration ${build_configuration} \

            -archivePath ${export_archive_path} CODE_SIGN_IDENTITY="${code_sign_identity}" PROVISIONING_PROFILE="${mobileprovision_uuid}" PRODUCT_BUNDLE_IDENTIFIER="${bundle_identifier}" ENABLE_BITCODE=${enable_bitcode}

        else

            xcodebuild clean -project ${project_name}.xcodeproj \

            -scheme ${scheme_name} \

            -configuration ${build_configuration}

            xcodebuild archive -project ${project_name}.xcodeproj \

            -scheme ${scheme_name} \

            -configuration ${build_configuration} \

            -archivePath ${export_archive_path} CODE_SIGN_IDENTITY="${code_sign_identity}" PROVISIONING_PROFILE="${mobileprovision_uuid}" PRODUCT_BUNDLE_IDENTIFIER="${bundle_identifier}" ENABLE_BITCODE=${enable_bitcode}

        fi

        #  检查是否构建成功

        #  xcarchive 是一个文件夹不是一个文件所以使用 -d 判断

        if [ -d "$export_archive_path" ] ; then

            echo "\033[37;45m项目构建成功 \033[0m"

        else

            echo "\033[37;45m项目构建失败\033[0m"

            exit 1

        fi

    }

    ExportArchive() {

        echo "\033[37;45m*************************  step3:开始导出ipa文件 *************************  \033[0m"

        sleep 0.5

        # 先删除export_options_plist文件

        if [ -f "$ExportOptionsPlistPath" ] ; then

            echo "\033[37;45m${ExportOptionsPlistPath}文件存在,进行删除\033[0m"

            rm -f $ExportOptionsPlistPath

        fi

        # 根据参数生成export_options_plist文件

        /usr/libexec/PlistBuddy -c  "Add :method String ${method}"  $ExportOptionsPlistPath

        /usr/libexec/PlistBuddy -c  "Add :provisioningProfiles:"  $ExportOptionsPlistPath

        /usr/libexec/PlistBuddy -c  "Add :provisioningProfiles:${bundle_identifier} String ${mobileprovision_uuid}"  $ExportOptionsPlistPath

        # 导出ipa

        xcodebuild  -exportArchive \

        -archivePath ${export_archive_path} \

        -exportPath ${export_ipa_path} \

        -exportOptionsPlist ${ExportOptionsPlistPath} -allowProvisioningUpdates

        # 检查ipa文件是否存在

        if [ -f "$export_ipa_path/$scheme_name.ipa" ] ; then

            echo "\033[32;1mexportArchive ipa包成功,准备进行重命名\033[0m"

        else

            echo "\033[31;1mexportArchive ipa包失败 \033[0m"

            exit 1

        fi

        # 修改ipa文件名称

        mv $export_ipa_path/$scheme_name.ipa $export_ipa_path/$ipa_name.ipa

        # 检查文件是否存在

        if [ -f "$export_ipa_path/$ipa_name.ipa" ] ; then

            echo "\033[37;45m导出 ${ipa_name}.ipa 包成功\033[0m"

        else

            echo "\033[37;45m导出 ${ipa_name}.ipa 包失败\033[0m"

            exit 1

        fi

        # 删除export_options_plist文件(中间文件)

        if [ -f "$ExportOptionsPlistPath" ] ; then

            #echo "${ExportOptionsPlistPath}文件存在,准备删除"

            rm -f $ExportOptionsPlistPath

        fi

        # 输出打包总用时

        echo "\033[37;46m总用时: ${SECONDS}s \033[0m"

        # open $export_path

    }

    # 将build目录下的ipa 上传到pgyer

    publishIPAToPgyer(){

        if [ -n "$pgyer_api_key" ] ; then

            echo "\033[37;46m*************************  上传中 *************************  \033[0m"

            curl --insecure -F "file=@$export_ipa_path/$ipa_name.ipa" -F "_api_key=$pgyer_api_key" https://www.pgyer.com/apiv2/app/upload

            echo "\033[37;46m*************************  上传完成 *************************  \033[0m"

            # 输出总用时

            echo "\033[37;46m总用时: ${SECONDS}s  \033[0m"

        fi

    }

    envionmentVariables

    Xcodebuild

    ExportArchive

    publishIPAToPgyer

    ```

    脚本中部分代码是为了配合公司项目需求写的,我已经大概删除了,可能会有遗漏的地方,如果直接用代码的人请稍微注意一下

    PS:公司领导提出一个新的需求,说iOS打包过程中,输出的日志太多,能不能在脚本中控制下输出,只输出warning和报错信息,我搜了一下,没找到解决方案,有没有哪位大佬能指点一下,先谢谢了。

    2019.02.26 补充,上面的问题找到答案了

    如果在执行过程中又不喜欢日志输出的,可以在命令行最后加上

    -quiet     #只有 warn 和 error 才会输出

    相关文章

      网友评论

        本文标题:2019-02-22 iOS自动打包脚本(绝对不用xcode打

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