iOS自动打包并发布脚本

直接上代码:

文件:autobuild.py

#!/usr/bin/env python

# -*- coding:utf-8 -*-

#./autobuild.py -p youproject.xcodeproj -s schemename

#./autobuild.py -w youproject.xcworkspace -s schemename

import argparse

import subprocess

import requests

import os

#configuration for iOS build setting

CONFIGURATION = "Debug"

EXPORT_OPTIONS_PLIST = "exportOptions.plist"

#会在桌面创建输出ipa文件的目录

EXPORT_MAIN_DIRECTORY = "~/Desktop/"

# configuration for pgyer

PGYER_UPLOAD_URL = "http://www.pgyer.com/apiv1/app/upload"

DOWNLOAD_BASE_URL = "http://www.pgyer.com"

USER_KEY = "d7fda23e2e6d11c2a3af54e7c56e4377"

API_KEY = "100a76c21d6e5202069223ea19018696"

#设置从蒲公英下载应用时的密码

PYGER_PASSWORD = "123"

# 蒲公英更新描述

PGYDESC = "testtest"

def cleanArchiveFile(archiveFile):

cleanCmd = "rm -r %s" %(archiveFile)

process = subprocess.Popen(cleanCmd, shell = True)

process.wait()

print "cleaned archiveFile: %s" %(archiveFile)

def parserUploadResult(jsonResult):

resultCode = jsonResult['code']

if resultCode == 0:

downUrl = DOWNLOAD_BASE_URL +"/"+jsonResult['data']['appShortcutUrl']

print "Upload Success"

print "DownUrl is:" + downUrl

else:

print "Upload Fail!"

print "Reason:"+jsonResult['message']

def uploadIpaToPgyer(ipaPath):

print "ipaPath:"+ipaPath

ipaPath = os.path.expanduser(ipaPath)

ipaPath = unicode(ipaPath, "utf-8")

files = {'file': open(ipaPath, 'rb')}

headers = {'enctype':'multipart/form-data'}

payload = {'uKey':USER_KEY,'_api_key':API_KEY,'publishRange':'2','isPublishToPublic':'2', 'password':PYGER_PASSWORD, 'updateDescription':PGYDESC}

print "update desc:" + PGYDESC

print "uploading...."

r = requests.post(PGYER_UPLOAD_URL, data = payload ,files=files,headers=headers)

if r.status_code == requests.codes.ok:

result = r.json()

parserUploadResult(result)

else:

print 'HTTPError,Code:'+r.status_code

#创建输出ipa文件路径: ~/Desktop/{scheme}{2016-12-28_08-08-10}

def buildExportDirectory(scheme):

dateCmd = 'date "+%Y-%m-%d_%H-%M-%S"'

process = subprocess.Popen(dateCmd, stdout=subprocess.PIPE, shell=True)

(stdoutdata, stderrdata) = process.communicate()

exportDirectory = "%s%s%s" %(EXPORT_MAIN_DIRECTORY, scheme, stdoutdata.strip())

return exportDirectory

def buildArchivePath(tempName):

process = subprocess.Popen("pwd", stdout=subprocess.PIPE)

(stdoutdata, stderrdata) = process.communicate()

archiveName = "%s.xcarchive" %(tempName)

archivePath = stdoutdata.strip() + '/' + archiveName

return archivePath

def getIpaPath(exportPath):

cmd = "ls %s" %(exportPath)

process = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True)

(stdoutdata, stderrdata) = process.communicate()

ipaName = stdoutdata.strip()

ipaPath = exportPath + "/" + ipaName

return ipaPath

def exportArchive(scheme, archivePath):

exportDirectory = buildExportDirectory(scheme)

exportCmd = "xcodebuild -exportArchive -archivePath %s -exportPath %s -exportOptionsPlist %s" %(archivePath, exportDirectory, EXPORT_OPTIONS_PLIST)

process = subprocess.Popen(exportCmd, shell=True)

(stdoutdata, stderrdata) = process.communicate()

signReturnCode = process.returncode

if signReturnCode != 0:

print "export %s failed" %(scheme)

return ""

else:

return exportDirectory

def buildProject(project, scheme):

archivePath = buildArchivePath(scheme)

print "archivePath: " + archivePath

archiveCmd = 'xcodebuild -project %s -scheme %s -configuration %s archive -archivePath %s -destination generic/platform=iOS' %(project, scheme, CONFIGURATION, archivePath)

process = subprocess.Popen(archiveCmd, shell=True)

process.wait()

archiveReturnCode = process.returncode

if archiveReturnCode != 0:

print "archive workspace %s failed" %(workspace)

cleanArchiveFile(archivePath)

else:

exportDirectory = exportArchive(scheme, archivePath)

cleanArchiveFile(archivePath)

if exportDirectory != "":

ipaPath = getIpaPath(exportDirectory)

uploadIpaToPgyer(ipaPath)

def buildWorkspace(workspace, scheme):

archivePath = buildArchivePath(scheme)

print "archivePath: " + archivePath

archiveCmd = 'xcodebuild -workspace %s -scheme %s -configuration %s archive -archivePath %s -destination generic/platform=iOS' %(workspace, scheme, CONFIGURATION, archivePath)

process = subprocess.Popen(archiveCmd, shell=True)

process.wait()

archiveReturnCode = process.returncode

if archiveReturnCode != 0:

print "archive workspace %s failed" %(workspace)

cleanArchiveFile(archivePath)

else:

exportDirectory = exportArchive(scheme, archivePath)

cleanArchiveFile(archivePath)

if exportDirectory != "":

ipaPath = getIpaPath(exportDirectory)

uploadIpaToPgyer(ipaPath)

def xcbuild(options):

project = options.project

workspace = options.workspace

scheme = options.scheme

desc = options.desc

# global PGYDESC

PGYDESC = desc

if project is None and workspace is None:

pass

elif project is not None:

buildProject(project, scheme)

elif workspace is not None:

buildWorkspace(workspace, scheme)

def main():

parser = argparse.ArgumentParser()

parser.add_argument("-w", "--workspace", help="Build the workspace name.xcworkspace.", metavar="name.xcworkspace")

parser.add_argument("-p", "--project", help="Build the project name.xcodeproj.", metavar="name.xcodeproj")

parser.add_argument("-s", "--scheme", help="Build the scheme specified by schemename. Required if building a workspace.", metavar="schemename")

parser.add_argument("-m", "--desc", help="Pgyer update description.", metavar="description")

options = parser.parse_args()

print "options: %s" % (options)

xcbuild(options)

if __name__ == '__main__':

main()

文件:exportOptions.plist

文件:README.md

#autobuild.py

iOS 自动化打包脚本,并上传*ipa*文件至蒲公英。参数说明:

```

Usage: autobuild.py [options]

Options:

-h, --help            show this help message and exit

-w name.xcworkspace, --workspace=name.xcworkspace

Build the workspace name.xcworkspace.

-p name.xcodeproj, --project=name.xcodeproj

Build the project name.xcodeproj.

-s schemename, --scheme=schemename

Build the scheme specified by schemename. Required if

building a workspace.

-m description, --desc=description

Pgyer update description.

```

使用方式:

```

./autobuild.py -p youproject.xcodeproj -s schemename

或者

./autobuild.py -w youproject.xcworkspace -s schemename

```

脚本中有几个全局变量,根据自己项目设置进行修改其值, 包括:

```

CONFIGURATION = "Release"

EXPORT_OPTIONS_PLIST = "exportOptions.plist"

#会在桌面创建输出ipa文件的目录

EXPORT_MAIN_DIRECTORY = "~/Desktop/"

```

*CONFIGURATION*:可在项目工程文件所在目录执行`xcodebuild -list`查看所有可选取值。

*EXPORT_OPTIONS_PLIST*:导出*ipa*文件时的配置参数,该参数值是你的配置参数文件名,请在*autobuild.py*文件所在目录下创建*exportOptions.plist*文件,配置参数({app-store, ad-hoc, enterprise, development})可使用`xcodebuild --help`查看所有可选取值。

*EXPORT_MAIN_DIRECTORY*:默认情况下会在桌面创建*ipa*文件导出的文件夹,文件夹命名如:*~/Desktop/{scheme}{2016-12-28_08-08-10}*。

```

# configuration for pgyer

PGYER_UPLOAD_URL = "http://www.pgyer.com/apiv1/app/upload"

DOWNLOAD_BASE_URL = "http://www.pgyer.com"

USER_KEY = "15d6xxxxxxxxxxxxxxxxxx"

API_KEY = "efxxxxxxxxxxxxxxxxxxxx"

#设置从蒲公英下载应用时的密码

PYGER_PASSWORD = ""

# 蒲公英更新描述

PGYDESC = ""

```

上传*ipa*文件至蒲公英的配置,你需要设置的是:*USER_KEY*, *API_KEY*, *PYGER_PASSWORD*。

本文最终实现的是使用脚本打 Ad-hoc 包,并发布测试,当然稍微修改一下脚本参数就可以打其他类型的 ipa 包了。另外该脚本还实现了将生成的 ipa 包上传至蒲公英进行测试分发。

结合蒲公英分发平台,将 ipa 文件上传至蒲公英分发平台,同时在终端会打印上传结果以及上传应用后该应用的 URL。蒲公英分发平台能够方便地将 ipa 文件尽快分发到测试人员,该平台有开放 API,可避免人工上传。

常见问题:

找不到request module.

import requests

ImportError: No module named requests

找不到request module,参考stackoverflow, 使用$ sudo pip install requests或者sudo easy_install -U requests;

如果使用了上传蒲公英,且安装需要密码,请打开脚本,搜一下脚本里的password,将其值设置为空。

========== update 2016-12-28 ==========

github上脚本进行更新:

使用xcodebuild -exportArchive替换PackageApplication进行打包.

解析传入参数使用argparse替换OptionParser.

去掉对PROVISIONING_PROFILECODE_SIGN_IDENTITY的配置,请使用Xcode8的自动证书管理。

新增exportOptions.plist文件,用于设置导出ipa文件的参数,该文件中的可配置参数可使用xcodebuild --help查看。

脚本传入参数去掉--target和--output,ipa文件默认会存放在Desktop创建诸如{scheme}{2016-12-28_08-08-10}格式的文件夹中。

假如你的项目目录如下所示:

|____AOP

| |____AppDelegate.h

| |____AppDelegate.m

| |____Base.lproj

| | |____LaunchScreen.xib

| | |____Main.storyboard

| |____Images.xcassets

| |____Info.plist

| |____main.m

| |____ViewController.h

| |____ViewController.m

|____AOP.xcodeproj

|____autobuild

| |____autobuild.py

| |____exportOptions.plist

先进入autobuild目录,使用脚本打包的命令如下:

python autobuild.py -p ../AOP.xcodeproj -s AOP

脚本执行完毕,若成功,则会在桌面生成ipa文件。

若是打包xcworkspace项目,则打包命令格式如下所示:

python autobuild.py -w ../yourworkspace.xcworkspace -s yourscheme

exportOptions.plist文件中的可选配置参数如下:

{app-store, ad-hoc, enterprise, development}

如果还有什么问题,可在下面回复留言。

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

推荐阅读更多精彩内容

  • 本文转自CaryaLiu's Blog。 本文最终实现的是使用脚本打 Ad-hoc 包,并发布测试,当然稍微修改一...
    M_Baron阅读 1,003评论 1 0
  • 本文最终实现的是使用脚本打 Ad-hoc 包,并发布测试,当然稍微修改一下脚本参数就可以打其他类型的 ipa 包了...
    Crazy2015阅读 318评论 0 0
  • 一般使用企业证书打包的朋友可能会想到使用脚本进行打包,因为打包的次数相对普通开发者比较多,So本人自己网搜一堆Py...
    iOS_ITCode阅读 2,248评论 1 4
  • 起初想法: 基于公司原有的Jenkins服务的基础上,最近在公司自动化打包的时,遇到一个尴尬的问题?为什么不能直接...
    Evans_Xiao阅读 3,779评论 0 3
  • 雅虎走到今天这个悲催的地步有很多原因,其中有一条就是他们的员工做了太多的伪工作。只要看看他们得产品就知道这一点:他...
    海滩之子阅读 203评论 1 1