iOS 使用 jenkins 参数化打包并上传到 fir.im

Jenkins 安装以及配置这里不做介绍,可参考以下文章

  • Jenkins安装及配置

新建好 Jenkins 项目以及配置之后勾选参数化构建

iOS 使用 jenkins 参数化打包并上传到 fir.im_第1张图片
image.png

如上图所示,通过 dev 参数配置 iOS 项目中的请求 url,为此我在项目的根目录下新建了个 config.json 文件,通过修改该文件完成配置,具体代码实现如下

#define kBASE_URL [SFCommonUtils baseUrl]
static NSString * _baseUrl = nil;
+ (NSString *)baseUrl
{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        // 获取文件目录
        NSString * path = [[NSBundle mainBundle] pathForResource:@"config.json" ofType:nil];
        // 读取文件内容
        NSString * str = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
  
        switch (str.intValue) {
            case 1:{
                // 测试环境
                _baseUrl = @"https://test.com/";
                break;
            }
            case 2:{
                // 正式环境
                _baseUrl = @"https://product.xxx.com/";
                break;
            }
            case 3:{
                // 本地环境
                _baseUrl = @"http://local.xxx.com/";
                break;
            }
            case 4:{
                // demo 环境
                _baseUrl = @"http://demo.xxx.com/";
                break;
            }
            default:
                // 默认为正式环境
                _baseUrl = @"https://product.xxx.com/";
                break;
        }
    });
    
    return _baseUrl;
}

自动化打包脚本

  • 在项目根目录下创建build_using_gym.sh 文件,并将以下代码粘贴进去, 并将 targetName 替换为您项目的的名称
 #!/bin/bash

#计时
SECONDS=0

#假设脚本放置在与项目相同的路径下
project_path=$(pwd)
#取当前时间字符串添加到文件结尾
now=$(date +"%Y_%m_%d_%H_%M_%S")

#指定项目的scheme名称
scheme="targetName"
#指定要打包的配置名
configuration="Adhoc"
#指定打包所使用的输出方式,目前支持app-store, package, ad-hoc, enterprise, development, 和developer-id,即xcodebuild的method参数
export_method='ad-hoc'

#指定项目地址
workspace_path="$project_path/targetName.xcworkspace"
#指定输出路径
output_path="project_path/APP"
#指定输出归档文件地址
archive_path="$output_path/targetName${now}.xcarchive"
#指定输出ipa地址
ipa_path="$output_path/targetName${now}.ipa"
#指定输出ipa名称
ipa_name="targetName${now}.ipa"
#获取执行命令时的commit message
commit_msg="$1"

#输出设定的变量值
echo "===workspace path: ${workspace_path}==="
echo "===archive path: ${archive_path}==="
echo "===ipa path: ${ipa_path}==="
echo "===export method: ${export_method}==="
echo "===commit msg: $1==="

#先清空前一次build
gym --workspace ${workspace_path} --scheme ${scheme} --clean --configuration ${configuration} --archive_path ${archive_path} --export_method ${export_method} --output_directory ${output_path} --output_name ${ipa_name}

#上传到fir,token为从 fir.im 上获取
fir publish ${ipa_path} -T token -c "${commit_msg}"

#输出总用时
echo "===Finished. Total time: ${SECONDS}s==="

配置 Jenkins 自动化打包命令

  • 使用Execute shell 并将以下代码copy 进去
#!/bin/bash -l
export LANG=en_US.UTF-8
#进入项目根目录
cd $WORKSPACE

#修改配置文件
echo $dev>config.json 

#执行 pod install
pod install --verbose --no-repo-update

#执行自动打包并上传
./build_using_gym.sh $commit_msg

然后就能愉快的一键打包并上传到 fir 上了,只需要轻轻点一下开始构建

iOS 使用 jenkins 参数化打包并上传到 fir.im_第2张图片
image.png

你可能感兴趣的:(iOS 使用 jenkins 参数化打包并上传到 fir.im)