iOS使用fastlane實現持續集成

fastlane
fastlane

前言

最近公司有打渠道包的需求,領導說使用fastlane來作持續集成,發了點時間研究了下,全部有了這篇文章android

本文主要涉及到如下幾個主題:ios

  • fastlane是什麼和爲何使用fastlane
  • fastlane安裝和設置
  • 在項目中集成fastlane

是什麼和爲何

fastlane是一款使用ruby實現的跨平臺的持續集成工具,支持安卓和iOS平臺項目的持續集成實踐,fastlane處理提供基本的可是很強大的包含了:初始設置、屏幕截圖、打包、上傳到測試平臺、部署等功能。此外還有大量的第三方插件可使用,好比fir插件支持上傳beta版本到fir測試平臺,appicon插件支持自定義某個子版本的應用圖標,還有不少不勝枚舉。
由於項目的配置、打包、上傳等一系列操做是耗時且沒有技術含量的工做,因此有了fastlane能夠爲咱們節省大量的沒有什麼價值的時間花費,以提升咱們的工做效率。git

fastlane安裝和設置

安裝

支持三種方式安裝github

  • 使用brew安裝
brew cask install fastlane
複製代碼
  • 使用gem安裝
sudo gem install fastlane -NV
複製代碼
  • 下載安裝包安裝

fastlane下載,下載完了以後打開install腳本便可安裝shell

安裝完成以後命令行輸入fastlane -v,能夠看到fastlane的版本信息說明安裝成功了,接下來能夠繼續設置步驟api

➜  PlushGame fastlane -v
fastlane installation at path:
/Users/aron/.rvm/gems/ruby-2.3.0@global/gems/fastlane-2.62.0/bin/fastlane
-----------------------------
fastlane 2.62.0
複製代碼

設置

進入到項目目錄執行fastlane init命令,會有一系列的設置,包含了登陸apple帳號,確認fastlane檢測到的項目信息確認,登陸iTunesConnect和從iTunesConnect拉取項目已存在的信息ruby

➜  PlushGame fastlane init
[20:37:45]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile
[20:37:48]: Detected iOS/Mac project in current directory...
...
# 根據提示輸入項目的Apple ID和對應的密碼,會自動登陸到蘋果開發者後臺,拉取開發者帳號對應的信息完成設置
[20:37:52]: Your Apple ID (e.g. fastlane@krausefx.com): XXXXXX@126.com
[20:37:55]: Verifying that app is available on the Apple Developer Portal and iTunes Connect...
[20:37:55]: Starting login with user 'XXXXXX@126.com'
-------------------------------------------------------------------------------------
Please provide your Apple Developer Program account credentials
The login information you enter will be stored in your macOS Keychain
You can also pass the password using the `FASTLANE_PASSWORD` environment variable
More information about it on GitHub: https://github.com/fastlane/fastlane/tree/master/credentials_manager
-------------------------------------------------------------------------------------

# 輸入Apple ID 對應的密碼
Password (for XXXXXX@126.com): **************

+----------------+------------------------------------------------------+
|                            Detected Values                            |
+----------------+------------------------------------------------------+
| Apple ID       | XXXXXX@126.com                                 |
| App Name       | PlushGame                                            |
| App Identifier | com.xxxx.xxxx                                |
| Workspace      | /Users/aron/PuTaoWorkSpace/project/PlushGame/PlushG  |
|                | ame.xcworkspace                                      |
+----------------+------------------------------------------------------+


# 檢測到的項目信息要求確認,按y便可
[20:38:50]: Please confirm the above values (y/n)
y
[20:39:03]: Created new file './fastlane/Appfile'. Edit it to manage your preferred app metadata information.
[20:39:03]: Loading up 'deliver', this might take a few seconds
[20:39:03]: Login to iTunes Connect (XXXXXXX@126.com)
[20:39:16]: Login successful

+--------------------------------------+------------------------+
|                    deliver 2.62.0 Summary                     |
+--------------------------------------+------------------------+
| run_precheck_before_submit           | false                  |
| screenshots_path                     | ./fastlane/screenshots |
| metadata_path                        | ./fastlane/metadata    |
| username                             | XXXXXX@126.com   |
| app_identifier                       | com.xxxx.xxxxx  |
| edit_live                            | false                  |
| platform                             | ios                    |
| skip_binary_upload                   | false                  |
| skip_screenshots                     | false                  |
| skip_metadata                        | false                  |
| skip_app_version_update              | false                  |
| force                                | false                  |
| submit_for_review                    | false                  |
| automatic_release                    | false                  |
| dev_portal_team_id                   | JN55YSQ744             |
| overwrite_screenshots                | false                  |
| precheck_default_rule_level          | warn                   |
| ignore_language_directory_validation | false                  |
+--------------------------------------+------------------------+


# 從ituneconnect拉取已存在的元數據,這裏只有截屏的信息
[20:39:34]: Downloading all existing screenshots...
[20:39:37]: Downloading existing screenshot '1_iphone58_1.X1_1.jpg' for language 'zh-Hans'
[20:39:42]: Downloading existing screenshot '2_iphone58_2.X2_1.jpg' for language 'zh-Hans'
[20:40:22]: Downloading existing screenshot '3_iphone58_3.X3_1.jpg' for language 'zh-Hans'
[20:40:49]: Downloading existing screenshot '4_iphone58_4.X5_1.jpg' for language 'zh-Hans'
....
複製代碼

初始化設置以後再項目文件夾下多出了一個fastlane文件夾,主要有如下的一些的信息app

➜  fastlane tree
.
├── Appfile
├── Deliverfile
├── Fastfile
├── metadata
│   ├── app_icon.jpg
│   ├── copyright.txt
│   └── zh-Hans
│       ├── description.txt
│       ├── keywords.txt
│       ├── marketing_url.txt
│       ├── name.txt
│       ├── privacy_url.txt
│       ├── promotional_text.txt
│       ├── release_notes.txt
│       ├── subtitle.txt
│       └── support_url.txt
└── screenshots
    ├── README.txt
    └── zh-Hans
        ├── 1_iphone58_1.X1_1.jpg
        ├── 1_iphone6Plus_1.1.png
        ├── 2_iphone58_2.X2_1.jpg
        ├── 2_iphone6Plus_2.2.png
        ├── 3_iphone58_3.X3_1.jpg
        ├── 3_iphone6Plus_3.3.png
        ├── 4_iphone58_4.X5_1.jpg
        ├── 4_iphone6Plus_4.4.png
        └── 5_iphone6Plus_5.5.png

8 directories, 62 files
複製代碼

最重要的是Appfile文件、Fastfile文件和Deliverfile文件iphone

  • Appfile文件保存了項目信息,包含項目使用的apple帳號信息、項目的team_id信息、項目identifier信息
app_identifier "com.xxxx.xxxx" # The bundle identifier of your app
apple_id "XXXXXX@126.com" # Your Apple email address

team_id "XXXXXSQ744" # Developer Portal Team ID
複製代碼
  • Fastfile文件保存了apple帳號信息和teamid信息,該文件的信息用於上傳appStore使用
app_identifier "com.sanshuai.FunCatch" # The bundle identifier of your app
username "sanshuai2017@126.com" # your Apple ID user
複製代碼
  • Fastfile文件定義了一些列的action,包含了項目打包設置、項目打包、項目截圖、項目上傳測試平臺、項目發佈、項目打包完成後期的一些操做

初始的Fastfile大體以下,能夠看到 lane :release 包含了
snapshot action用於截屏
gym action用於打包
deliver action用於上傳到App Store
frameit action用於給截屏添加邊框
after_all 塊中的slack action 則是負責打包成功以後發送信息到slackide

fastlane_version "2.62.0"

default_platform :ios

platform :ios do

  desc "Deploy a new version to the App Store"
  lane :release do
    # match(type: "appstore")
    # snapshot
    gym(scheme: "PlushGame") # Build your app - more options available
    deliver(force: true)
    # frameit
  end

  # You can define as many lanes as you want

  after_all do |lane|
    # This block is called, only if the executed lane was successful

    # slack(
    # message: "Successfully deployed new App Update."
    # )
  end
end
複製代碼

接下來是爲咱們本身的項目編寫符合業務需求的Fastfile了

fastlane項目集成

fastlane 詳細介紹

該部分會詳細的介紹fastlane中的塊操做和lane的用途,以及fastlane中預約義的經常使用的action

fastlane 中的塊和lane

fastlane 包含了預約義塊有:
before_all 塊用於項目打包以前的操做,好比可使用cocopods命令更新pod庫(若是使用的是pod項目)
after_all 塊用於項目打包完成以後的操做,好比通知用戶打包完成
error 塊用於項目打包失敗以後的操做,好比通知用戶打包失敗
lane 定義一個打包操做的具體流程,預設的有 lane :release定義了打包而且發佈到App Store,lane :beta 打包而且發佈到testflight測試平臺。

fastlane 經常使用的action以及參數

fastlane中最主要的操做就是調用action,fastlane預約義了不少頗有用的action,若是不夠還可使用第三發提供的插件調用第三發的action。下面介紹幾個fastlane中預約的action
gym 是打包action,是 build_ios_app action的別名,他有如下經常使用的參數:

key 描述
workspace 若是項目是一個workspace,則是該項目的workspace路徑
project 項目的project路徑
scheme 項目的scheme,注意指定的scheme須要被指定爲shared,/->Manage Schemes->Shared複選框須要打鉤
output_directory 打包保存路徑
output_name 打包保存的文件名
export_method 至關於配置 Archives->Export->mehtod 可選:[app-store, ad-hoc, package, enterprise, development(默認), developer-id]
configuration 至關於配置Scheme->Build Configuration:[Release, Debug],Release會生成dsym文件,而Debug不會

set_info_plist_value是設置修改info.plist文件的 action,一次調用該action只能設置一個值,能夠屢次調用該命令來設置多個值,他有如下經常使用的參數:

key 描述
path info.plist文件路徑
key info.plist文件中的key
value key對應的值

pilot 是上傳到TestFlight的 action,是 upload_to_testflight action的別名,沒有特殊需求能夠不指定參數

deliver 是上傳到App Store的 action,是 upload_to_app_store action的別名,沒有特殊需求能夠不指定參數,會從Deliverfile文件讀取帳號信息登陸到ITunesConnect從./fastlane/metadata ./fastlane/screenshots 文件夾中讀取配置的App信息元數據而後上傳

fastlane其餘操做

fastlane是一個ruby的腳本,能夠在裏面執行自定義的腳本文件,好比添加 sh "your_script.sh" 語句能夠執行自定義的腳本命令,也能夠添加 'pwd' (這裏使用的是反引號)執行一個shell命令或者添加 exec("pwd") 執行一個shell命令

Fastfile文件基本的編寫

下面以一個真實的業務場景爲例,該業務場景要求多渠道打包,而且不一樣渠道對應的配置有差別(info.plist文件配置不一樣和圖標不一樣),打包支持上傳到fir測試平臺,不一樣渠道打包的命名方式是【時間+渠道+名稱.ipa】格式,最後還須要把對應的dsym文件和ipa文件壓縮歸檔爲一個zip包文件。

# Customise this file, documentation can be found here:
# https://docs.fastlane.tools/actions/
# All available actions: https://docs.fastlane.tools/actions
# can also be listed using the `fastlane actions` command

# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`

# If you want to automatically update fastlane if a new version is available:
# update_fastlane

# This is the minimum version number required.
# Update this, if you use features of a newer version
fastlane_version "2.62.0"

default_platform :ios

platform :ios do
  before_all do
    # ENV["SLACK_URL"] = "https://hooks.slack.com/services/..."
    # cocoapods
    # carthage
  end

  desc "Runs all the tests"
  lane :test do
    scan
  end

  # 定義全局參數:項目名稱
  projName = "Plush"
  # 定義全局參數:Assets路徑
  projAssetsPath = "../#{projName}/Resources/Assets.xcassets"
  # 定義全局參數:Info.plist路徑
  plistPath = "./#{projName}/Resources/Info.plist"
  # 定義全局參數:包名(接收以後壓縮使用)
  pkgName = ""
  # 定義全局參數:基本包名
  basePkgName = "Plush"
  # 定義全局參數:輸出目錄,對應output_directory配置
  outputBaseDir = "output"  

  desc "自定義的渠道打包"
  desc "使用方式:蘋果助手:`bundle exec fastlane customChannelBeta ch:pgzs shouldUp:0`"
  desc "使用方式:91助手:`bundle exec fastlane customChannelBeta ch:91zs shouldUp:0`"
  desc "op 支持參數: ch:渠道類型[pgzs, 91zs, AppStore(默認)]"
  desc "op 支持參數: shouldUp:是否須要上傳[0, 1]"
  desc "op 支持參數: up:上傳類型[testflight, fir]"
  desc "op 支持參數: exportMethod: export_method 配置[app-store, ad-hoc, package, enterprise, development(默認), developer-id] ** up爲testflight須要制定爲app-store **"
  desc "op 支持參數: version:版本(可選)"
  desc "op 支持參數: build:構建版本(可選,testflight和appstore這個參數須要制定一個不重複的)"
  lane :customChannelBeta do |op|
    
    # 渠道
    channel = op[:ch]
    if channel.nil? || channel.empty?
      channel = "AppStore"
    end

    # 打包名字
    time = Time.new
    dateTimeStr = "#{time.year}-#{time.month}-#{time.day}_#{time.hour}-#{time.min}"
    pkgName = "#{dateTimeStr}_#{channel}_#{basePkgName}.ipa"

    # match(type: "appstore") # more information: https://codesigning.guide
    #設置plist,此處傳入plist路徑,能夠用來作環境配置
    set_info_plist_value(path: plistPath, key: "pt_channel", value: channel)


    # # 設置AppIcon
    # iconPath = op[:iconPath]
    # if iconPath.nil? || iconPath.empty?
    # iconPath = "channel_config/#{channel}/icon1024.png"
    # iconPath = "channel_config/91zs/icon1024.png"
    # end
    # puts "iconPath = #{iconPath}"
    # appicon(appicon_image_file: iconPath,
    # appicon_devices: [:ipad, :iphone, :ios_marketing, :watch, :watch_marketing])

    # 拷貝AppIcon.appiconset替換圖標
    iconAssetPath = op[:iconPath]
    if iconAssetPath.nil? || iconAssetPath.empty?
      iconAssetPath = "../channel_config/#{channel}/AppIcon.appiconset"
    end
    cpCmd = "cp -fRv #{iconAssetPath} #{projAssetsPath}"
    `#{cpCmd}`
    puts "cpCmd = #{cpCmd}"

    # 設置顯示版本和構建版本
    version = op[:version]
    build = op[:build]
    if version.nil? || version.empty?
    else
      increment_version_number(version_number: version)
    end
    if build.nil? || build.empty?
    else
      increment_build_number(build_number: build)
    end

    exportMethod = op[:exportMethod]
    if exportMethod.nil? || exportMethod.empty?
      exportMethod = "development"
    end

    puts "exportMethod = #{exportMethod} pkgName = #{pkgName} outputBaseDir = #{outputBaseDir}"

    # build_ios_app 參數配置
    gym(
      export_method: exportMethod, # 至關於配置 Archives->Export->mehtod:[app-store, ad-hoc, package, enterprise, development(默認), developer-id]
      output_name: pkgName,
      configuration: "Release", # 至關於配置Scheme->Build Configuration:[Release, Debug],Release會生成dsym文件,而Debug不會
      output_directory: outputBaseDir,
      scheme: "Plush",
    )


    # 是否須要上傳配置,默認不上傳
    shouldUp = op[:shouldUp]
    if shouldUp == "1"
      # 上傳測試包到測試平臺類型,默認上傳到fir,能夠支持多種測試平臺使用逗號分隔
      # testflight, fir
      upType = op[:up]
      if upType.nil? || upType.empty?
        upType = "fir"
      end
      if upType.include? "testflight"
        pilot # 上傳到testflight
      elsif upType.include? "fir"
        firim(firim_api_token: "xxxxxxxx")#上傳fir,若是是新項目,fir會自動建立
      end
    end
  end

  desc "上傳到 App Store"
  lane :release do
    # match(type: "appstore")
    # snapshot
    gym(
      export_method: "app-store", # 至關於配置 Archives->Export->mehtod:[app-store, ad-hoc, package, enterprise, development, developer-id]
      output_name: pkgName,
      configuration: "Release", # 至關於配置Scheme->Build Configuration:[Release, Debug],Release會生成dsym文件,而Debug不會
      output_directory: outputBaseDir,
      scheme: "Plush",
    )
    deliver(force: true)
    # frameit
  end

  # You can define as many lanes as you want

  after_all do |lane, op|
    # This block is called, only if the executed lane was successful

    # slack(
    # message: "Successfully deployed new App Update."
    # )

    if !pkgName.empty?
      fileName = pkgName.gsub(".ipa", "")
      dsymName = "#{fileName}.app.dSYM.zip"
      zipFileName = "#{fileName}.zip"

      # 使用zip命令壓縮
      zipCmd = "zip ../#{outputBaseDir}/#{zipFileName} ../#{outputBaseDir}/#{dsymName} ../#{outputBaseDir}/#{pkgName}"
      puts "begin zip #{zipCmd}"
      `#{zipCmd}`
    end

  end

  error do |lane, exception|
    # slack(
    # message: exception.message,
    # success: false
    # )
  end
end
複製代碼

使用方式:

#打91助手渠道的包不上傳
bundle exec fastlane customChannelBeta ch:91zs shouldUp:0

# 91助手渠道打包而且上傳到fir
bundle exec fastlane customChannelBeta ch:91zs shouldUp:1 up:fir

# testflight 打包上傳
bundle exec fastlane customChannelBeta shouldUp:1 up:testflight exportMethod:app-store

# AppStore 打包上傳
bundle exec fastlane release
複製代碼

執行打包的命令會在項目目錄下生成一個output目錄,內容以下

➜  output tree
.
├── 2018-1-17_11-53_pgzs_Plush.app.dSYM.zip
├── 2018-1-17_11-53_pgzs_Plush.ipa
└── 2018-1-17_11-53_pgzs_Plush.zip
複製代碼

添加第三方插件

fastlane有不少的第三方擴展插件,下面以添加firim插件爲例

查找插件

使用fastlane search_plugins查找插件

➜  output fastlane search_plugins fir
...
+----------+-------------------------------------+-----------+
|                   fastlane plugins 'fir'                   |
+----------+-------------------------------------+-----------+
| Name     | Description                         | Downloads |
+----------+-------------------------------------+-----------+
| firebase | Unofficial tool to access Firebase  | 1393      |
|          | project settings                    |           |
| firim    | firim                               | 1142      |
| fir      | Upload a new build to fir.im        | 807       |
+----------+-------------------------------------+-----------+
複製代碼

安裝插件

使用fastlane add_plugin安裝插件

# fastlane 安裝firim插件
➜  PlushGame fastlane add_plugin firim

# 添加 `bundle exec` 使用本地的插件,加快速度
➜  PlushGame bundle exec fastlane add_plugin firim
[15:08:48]: Plugin 'fastlane-plugin-firim' was added to './fastlane/Pluginfile'
[15:08:48]: Make sure to commit your Gemfile, Gemfile.lock and Pluginfile to version control
Installing plugin dependencies...
Successfully installed plugins
複製代碼

添加成功以後再 fastlane 目錄下多出了一個 Pluginfile 文件,描述添加的插件的信息

# Autogenerated by fastlane
#
# Ensure this file is checked in to source control!

gem 'fastlane-plugin-firim'
複製代碼

插件使用方法

使用fastlane action查找某個action的使用方法和參數,下面是查找firim action的使用方法和參數的例子

➜  Plush.app fastlane action firim
[23:50:31]: fastlane detected a Gemfile in the current directory
[23:50:31]: however it seems like you don't use `bundle exec` [23:50:31]: to launch fastlane faster, please use [23:50:31]: [23:50:31]: $ bundle exec fastlane action firim [23:50:31]: [23:50:31]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile +-------------------------+---------+-------------------------+ | Used plugins | +-------------------------+---------+-------------------------+ | Plugin | Version | Action | +-------------------------+---------+-------------------------+ | fastlane-plugin-firim | 0.1.0 | firim | | fastlane-plugin-appicon | 0.11.0 | android_appicon appicon | +-------------------------+---------+-------------------------+ Loading documentation for firim: +------------------------------------+ | firim | +------------------------------------+ | Uses firim to upload ipa to fir.im | | | | Created by whlsxl | +------------------------------------+ +------------------------+--------------------------+------------------+---------+ | firim Options | +------------------------+--------------------------+------------------+---------+ | Key | Description | Env Var | Default | +------------------------+--------------------------+------------------+---------+ | firim_api_token | fir.im user api token | | | | firim_username | fir.im username, a sign | | | | | for identify different | | | | | token | | | | ipa | Path to your ipa file | DELIVER_IPA_PATH | | | icon | Path to the app icon, | | | | | MUST BE jpg | | | | app_identifier | The app's identifier     |                  |         |
| app_name               | The app's name | | | | app_desc | The app's desc           |                  |         |
| app_short              | The app's short URL | | | | app_is_opened | APP's download link      |                  |         |
|                        | whether opened           |                  |         |
| app_is_show_plaza      | Whether the app show in  |                  |         |
|                        | plaza                    |                  |         |
| app_passwd             | The app's download page | | | | | password | | | | app_store_link_visible | Whether show store link | | | | | in download page | | | | app_version | The app's version        |                  |         |
| app_build_version      | The app's build version | | | | app_release_type | The app's release type   |                  |         |
|                        | (Adhoc, Inhouse)         |                  |         |
| app_changelog          | The app's changelog | | | | app_info_to_file_path | Append all [app's name]  |                  |         |
|                        | : [URL] to this file     |                  |         |
+------------------------+--------------------------+------------------+---------+

More information can be found on https://docs.fastlane.tools/actions
複製代碼

在Fastfile中添加firim action,把包上傳到fir,token能夠到fir後臺點擊右上角的設置獲取便可

firim(firim_api_token: "xxxxxx")#上傳fir,若是是新項目,fir會自動建立
複製代碼

結束

以上就是fastlane在項目中的實戰演練,須要可以幫助到須要得人

相關文章
相關標籤/搜索