Mac Jenkins

Posted jztsdwn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac Jenkins相关的知识,希望对你有一定的参考价值。

搞了俩天的Jenkins,网上的流程都很详细,所以不在叙述过程,记录下自己遇到的问题。

1. Jenkins 运行环境 JDK。

2. 关联gitlab的时候,权限问题,当前gitlab对应的用户要和Jenkins上添加的用户一致。

$ git config user.name "yourname"
$ git config user.email "[email protected]"

 3. 关于导出ipa的指令,需要对应的plist文件,如下

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>compileBitcode</key>
	<false/>
	<key>method</key>
	<string>development</string>
	<key>provisioningProfiles</key>
	<dict>
		<key>bundleID</key>
		<string>配置文件</string>
	</dict>
	<key>signingCertificate</key>
	<string>iPhone Developer</string>
	<key>signingStyle</key>
	<string>manual</string>
	<key>stripSwiftSymbols</key>
	<true/>
	<key>teamID</key>
	<string>xxxxxxxx</string>
	<key>thinning</key>
	<string><none></string>
</dict>
</plist>

 

以上是关于Mac Jenkins的主要内容,如果未能解决你的问题,请参考以下文章

python 一个终端代码片段,在mac上生成可启动的usb live CD,以运行类似ubuntu或debian的内容。

尝试在单台 Mac 机器上使用并行 Jenkins 管道构建 iOS 应用程序时出现缓存问题

Mac 上自动化构建 jenkins 操作步骤(中)git环境搭建

通过jenkins在mac mini上运行ios构建时获取java.lang.InterruptedException

Jenkins Mac slave 遇到 git: 'credential-osxkeychain' is not a git command. 错误

通过 jenkins 在 mac mini 上运行 ios 时获取 java.lang.InterruptedException