工程效率配置&Shell&打包等

iOS自动构建工具 -- xcodebuild

2020-10-10  本文已影响0人  Mrfang1

工作项目中的iOS工程都是使用Shell脚本搭配xcodebuild自动构建而成,搭配Jenkins 持续集成(CI)工具,可以很方便的实现项目的构建、部署、自动化。

简介

xcodebuild是苹果发布自动构建的工具。它在一个Xcode项目下能构建一个或者多个targets,也能在一个workspace或者Xcode项目上构建scheme。

scheme 和 target的区别:
target包含了所有的源文件,它决定编译哪些文件。 一个project可以包含一个或多个target
scheme 定义了一个target的集合,它来决定和构建哪一个target

API介绍

Tips: 在终端输入man xcodebuild,可以查看xcdebuild详细的使用方法

文档描述如下:

Usage
To build an Xcode project, run xcodebuild from the directory containing your project (i.e. the directory
containing the name.xcodeproj package). If you have multiple projects in the this directory you will need to
use -project to indicate which project should be built. By default, xcodebuild builds the first target
listed in the project, with the default build configuration. The order of the targets is a property of the
project and is the same for all users of the project.


To build an Xcode workspace, you must pass both the -workspace and -scheme options to define the build. The
parameters of the scheme will control which targets are built and how they are built, although you may pass
other options to xcodebuild to override some parameters of the scheme.

参数介绍

以下是xcodebuild命令的一些参数,其中有一些参数不会执行构建命令如:
-list,-showBuildSettings, -showdestinations
-showsdks, -showTestPlans, -usage, -version.


action expression
build 编译 build root(SYMROOT)下的target
Build-for-test 编译 build root(SYMROOT)下的target和相关的tests
analyze 编译 build root(SYMROOT)下的target并对该target静态分析
archive 打包 build root(SYMROOT)下的scheme,需要指定一个scheme
test 测试 build root(SYMROOT)下的scheme,需要制定一个scheme和可选目标设备
install 编译 target并安装到target的安装目录下(DSTROOT)
clean 移除 build root(SYMROOT)下的编译产物和生成文件

Destations -- 目标设备

-destination参数用于根据 destination specifier 指定特定的目标设备

当前,xcodebuild支持以下platforms

platforms expression
macOS The local Mac, referred to in the Xcode interface as My Mac
iOS An iOS device
iOS Simulator A simulated iOS device
watchOS A watchOS app is always built and deployed nested inside of an iOS app.
watchOS Simulator A watchOS Simulator app is always built and deployed nested inside of an iOS Simulator app.
tvOS A tvOS device
tvOS Simulator A simulated tvOS device

Testing on Mulitple Destinations

当使用 -destination参数指定大于一个目标设备时,xcodebuild 会并行在目标设备上执行测试。这个模式下,xcodebuild 自动同时的选择设备和模拟器的数目。所有可用的测试在每个目标设备上都会被执行

Distributing Archives -- 发布打包

参数 -exportArchive 指定了xcodebuild根据 -exportOptionPlist参数发布打包到 -archivePath路径下。product 可以上传到到Apple 或者导出到本地。 导出的product 会被放在 -exportPath路径下

Environment Variables

以下环境变量会影响xcodebuild的执行

XCODE_XCCONFIG_FILE 给一个文件设置一个路径,编译时该文件中的编译设置会被加载,该设置会覆盖所有其他设置

Exit Codes

xcodebuild 退出会返回 sysexit(3) 类型。
成功 EX_OK
参数错误 EX_USAGE
输入文件未找到 EX_NOINPUT
文件无法读写 EX_IOERR
命令执行失败 EX_SOFTWARE
其他场景可能会返回其他错误码

EXAMPLES -- 示例

上一篇下一篇

猜你喜欢

热点阅读