Jenkins on OS X: xcodebuild gives Code Sign error

前端 未结 11 2011
醉话见心
醉话见心 2020-12-12 09:39

Summary:

Setting up Jenkins on OS X has been made significantly easier with the most recent installer (as of 1.449 - March 9, 2012), however managing the pr

11条回答
  •  Happy的楠姐
    2020-12-12 10:26

    I added the private and public key for the company to the keychain. I added the provision profiles for the production I will be building.

    Since this user did not have an account I logged into devcenter with my account. Downloaded the provisioning certs and loaded them into Xcode.

    I did not add a cert specifically for the build role account, ex. jenkins.

    I did add this to the build script: security unlock-keychain -p mySecretPassword as above, but...

    I created a file ~/.ssh/mypass and add the password to the file.

    Then the command becomes: security unlock-keychain -p cat ~/.ssh/mypass

    Builds are working like a champ. I get the ipa file, it loads on app central and works on the device.

提交回复
热议问题