美文网首页
fastlane 自动化脚本集成工具

fastlane 自动化脚本集成工具

作者: Jason_li012 | 来源:发表于2020-08-06 09:24 被阅读0次

    官方文档 fastlane doc : https://docs.fastlane.tools/

    使用 gem 安装 fastlane

    sudo gem install fastlane -NV
    

    或者使用 Homebrew

    brew install fastlane
    

    进入项目根目录初始化fastlane

    fastlane init
    

    在这个过程中,会让选择fastlane 的用处,我选择3

    WechatIMG74.jpeg

    接下来会让你输入AppleID 和密码。

    WechatIMG73.jpeg

    执行完成后,会在工程目录下生成fastlane文件夹,我们需要修改fastlane文件夹的两个配置文件:Appfile和Fastfile

    1 修改Appfile

    app_identifier("com.xxxx.betterVolunteer") # The bundle identifier of your app
    apple_id("xxx@eagersoft.cn") # Your Apple email address
    
    # For more information about the Appfile, see:
    #     https://docs.fastlane.tools/advanced/#appfile
    

    2 安装插件

    fastlane 拥有支持上传fir.im 和蒲公英的第三方插件。

    fastlane add_plugin firim #fir插件
    
    fastlane add_plugin pgyer # 蒲公英
    

    3 修改Fastfile

    default_platform(:ios)
    
    platform :ios do
    
      #desc "Push a new beta build to TestFlight"
      #lane :beta do
       # increment_build_number(xcodeproj: "YouZhiYuan.xcodeproj")
        #build_app(workspace: "YouZhiYuan.xcworkspace", scheme: "YouZhiYuan-Adhoc")
        #upload_to_testflight
        
      #end
      
      desc "archive ipa to firim"
      lane :archive do
      #打包的ipa存放路径
      outputDir = "/Users/youzy/Documents/ipa/#{Time.now.strftime('%Y-%m-%d%H:%M:%S')}"
      #打包的ipa名称
      outputName = "MOFSPickerManager-#{Time.now.strftime("%Y-%m-%d %H:%M:%S")}"
      gym(
      clean: true,
      scheme: "XXXX", #项目的scheme
      workspace: "XXXX.xcworkspace", #如果项目使用CocoaPods需要加上
      export_xcargs: "-allowProvisioningUpdates",
      configuration: "Release",
      output_directory: outputDir,
      output_name: outputName,
      include_bitcode: false,
      include_symbols: true,
      silent: true,
      export_options: {
      method: "ad-hoc", #根据具体情况定
      provisioningProfiles: {
        "com.XXX.betterVolunteer" => "iOSDistributionAdhocCertifateNew",# bundId => 证书名字
      },
      thinning: "<none>",
      teamID: "xxx",# 钥匙串证书后面的teamID
      
      }
      )
      #firim(firim_api_token: "XXXXXX") #上传到firim
      end
      
      after_all do |lane, options|
      
      #read -p "请输入版本描述信息:" describe
      #echo "$describe"
      firim(firim_api_token: "xxxxxx", app_changelog: "自动化打包测试") #上传到firim token 为fir.im个人中心的api token
    
      # pgyer(api_key: "7f15xxxxxxxxxxxxxxxxxx141", user_key: "4a5bcxxxxxxxxxxxxxxx3a9e", update_description: "update by fastlane") # 上传蒲公英
      end
      
    end
    

    4 执行 fastlane archive

    接下来开一局王者荣耀,慢慢等待.....


    WechatIMG75.jpeg

    另外,由于根据每个人公司情况不同,有的发布测试包之后,需要写一份邮件通知测试人员,有的需要群发消息。
    1: fir.im 支持上传新包自动群发消息,首先需要在钉钉或者企业微信添加一个机器人,然后在fir.im中我的应用添加机器人链接就行了。这样每一次上传新包,就会自动通知群里面。消息内用包含(app名称、下载链接、版本、跟新内容),就是那么方便😁


    WechatIMG76.jpeg

    2: 群发邮件通知测试人员。写一个脚本,在ipa包上传第三方平台之后,执行邮件发送脚本就ok了。

    相关文章

      网友评论

          本文标题:fastlane 自动化脚本集成工具

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