zoukankan      html  css  js  c++  java
  • Mac Jenkins

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

    1. Jenkins 运行环境 JDK。

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

    $ git config user.name "yourname"
    $ git config user.email "youremail@youremail.com"
    

     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>
    
  • 相关阅读:
    docker-排除故障
    python的标识符
    python的数据类型
    python的数与字符串
    场景法
    正交试验法
    错误推测法
    决策表法
    因果图法
    python基础--用python执行系统命令
  • 原文地址:https://www.cnblogs.com/jztsdwn/p/10895828.html
Copyright © 2011-2022 走看看