iOS Xcode Jenkins+fastlane

Jenkins 常用命令
安装jenkins
brew install jenkins  # 安装最新版本
brew install jenkins@YOUR_VERSION  # 安装jenkins指定版本:brew install jenkins@1.1.13
brew services start jenkins  # 启动jenkins
brew services restart jenkins  # 重新启动jenkins
brew upgrade jenkins  # 更新jenkins
brew services stop jenkins  # 停止jenkins服务
brew uninstall jenkins  # 卸载jenkins


安装 LTS 版本
brew install jenkins-lts  # 安装最新版本
brew install jenkins-lts@YOUR_VERSION  # 安装指定版本:brew install jenkins-lts@1.1.13
brew services start jenkins-lts  # 启动
brew services restart jenkins-lts  # 重新启动
brew upgrade jenkins-lts  # 更新
brew services stop jenkins-lts  # 停止jenkins服务
brew uninstall jenkins-lts  # 卸载jenkins

启动Jenkins后,打开浏览器输入: localhost:8080 

安装好Jenkins后,进行一些全局配置

Jenkins

系统管理-->系统配置
image.png
image.png

image.png

image.png
LANG 
en_US.UTF-8

LANGUAGE
en_US.UTF-8

LC_ALL
en_US.UTF-8

PATH

在终端输入  
echo $PATH
命令获取

/Users/xxx/.rvm/gems/ruby-3.0.0/bin:/Users/xxx/.rvm/gems/ruby-3.0.0@global/bin:/Users/xxx/.rvm/rubies/ruby-3.0.0/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Apple/usr/bin:/Users/xxx/.rvm/bin

系统管理 - > 插件管理 - >可选插件 - > 过滤 - >选择插件 -> 直接安装
Xcode integration 必须的 这个是配置Xcode 编译项的
Keychains and Provisioning Profiles Management 证书管理 (最新版本Jenkins 有bug 不能用改用shell)
Email Ext Recipients Column Plugin 邮件
CocoaPods Jenkins Integration
GitLab
GitLab Authentication

对项目进行配置

我的视图-->项目名称-->配置
image.png
SELECTED_BRANCH
image.png
SELECTED_ENV

debug
release
image.png

配置git仓库


image.png

设置超时时间,设置的太小会网不好的时候会超时


image.png

shell脚本命令

#!/bin/bash -il

cd /自己工程的目录

echo -e "=========打包==========="
fastlane dev_uat_debug


image.png

配置Fastfile文件

Fastfile文件
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
#     https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
#     https://docs.fastlane.tools/plugins/available-plugins
#

# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane

default_platform(:iOS)


# 项目ID
project_identifier_uat = "项目的Bundle Indentifier" 


# 项目的scheme名称
project_scheme_uat = “scheme名称”


# .ipa文件输出路径
ipa_outputDirectory = "~/Desktop/vv-build”

# 项目的内测描述文件名称
project_uat_provisioningProfiles = "描述文件名称"


# 注:由于如果使用手动配置证书,在export_options指定打包方式!
ipa_exportMethod = "development"

platform :iOS do
  desc "Description of what the lane does"



  # ----------------------- 打包uat环境debug.ipa文件 -----------------------
    lane :dev_uat_debug do|options|
    branch = options[:branch]

        puts "*************| 开始打包.ipa文件... |*************"

        # 更新项目build号
        #updateProjectBuildNumber

        # 开始打包
        gym(
            # 指定输出的ipa名称
            #output_name:"#{project_scheme_uat}_#{get_build_number(xcodeproj: "DMS_APP.xcodeproj")}",
            output_name:"#{project_scheme_uat}",
            # 指定项目的scheme
            scheme:"#{project_scheme_uat}",
            # 是否清空以前的编译信息 true:是
            clean:true,
            # 指定打包方式,Release 或者 Debug
            configuration:"Debug",
            # 指定打包方式,目前支持app-store, package, ad-hoc, enterprise, development
            # 注:由于使用手动配置证书,在export_options指定打包方式
            #export_method:"#{ipa_exportMethod}",
            # 指定输出文件夹
            output_directory:"#{ipa_outputDirectory}",
            # Xcode9将不会允许你访问钥匙串里的内容,除非设置allowProvisioningUpdates
            export_xcargs:"-allowProvisioningUpdates",
            # 隐藏没有必要的信息
            silent:true,
            # 手动配置证书,注意打包方式需在export_options内使用method设置,不可使用export_method
            export_options: {
                method:"#{ipa_exportMethod}",
                provisioningProfiles: {
                    "#{project_identifier_uat}":"#{project_uat_provisioningProfiles}"
                },
            }
        )
    end



  # ----------------------- 打包uat环境release.ipa文件 -----------------------
    lane :dev_uat_release do|options|
    branch = options[:branch]

        puts "*************| 开始打包.ipa文件... |*************"

        # 更新项目build号
        #updateProjectBuildNumber

        # 开始打包
        gym(
            # 指定输出的ipa名称
            #output_name:"#{project_scheme_uat}_#{get_build_number(xcodeproj: "DMS_APP.xcodeproj")}",
            output_name:"#{project_scheme_uat}",
            # 指定项目的scheme
            scheme:"#{project_scheme_uat}",
            # 是否清空以前的编译信息 true:是
            clean:true,
            # 指定打包方式,Release 或者 Debug
            configuration:"Release",
            # 指定打包方式,目前支持app-store, package, ad-hoc, enterprise, development
            # 注:由于使用手动配置证书,在export_options指定打包方式
            #export_method:"#{ipa_exportMethod}",
            # 指定输出文件夹
            output_directory:"#{ipa_outputDirectory}",
            # Xcode9将不会允许你访问钥匙串里的内容,除非设置allowProvisioningUpdates
            export_xcargs:"-allowProvisioningUpdates",
            # 隐藏没有必要的信息
            silent:true,
            # 手动配置证书,注意打包方式需在export_options内使用method设置,不可使用export_method
            export_options: {
                method:"#{ipa_exportMethod}",
                provisioningProfiles: {
                    "#{project_identifier_uat}":"#{project_uat_provisioningProfiles}"
                },
            }
        )
    end

end

用配置好的Jenkins构建工程

1.点击Build with Parameters
2.选择分支
3.选择运行环境
4.开始构建
image.png

构建成功


image.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,076评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,658评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,732评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,493评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,591评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,598评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,601评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,348评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,797评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,114评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,278评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,953评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,585评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,202评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,442评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,180评论 2 367
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,139评论 2 352

推荐阅读更多精彩内容