Running xcodebuild from a forked terminal

前端 未结 13 1115
说谎
说谎 2020-12-02 04:20

I\'m trying to setup an automated build server for an iPhone application. I\'d like to be able to have nightly adhoc beta builds so that testers can follow the development.<

相关标签:
13条回答
  • 2020-12-02 05:19

    I had te error User interaction is not allowed and solved it by unlocking the keychain first

    security unlock-keychain /Users/yannooo/Library/Keychains/login.keychain
    

    I've also tried to put my certs in the System's keychain and it was working. My final solution was to put all my iPhone related certs in a dedicated keychain named iPhone.keychain using the Keychain Access application

    security list-keychains -s /Users/yannooo/Library/Keychains/iPhone.keychain 
    security unlock-keychain -p keychainpassword /Users/yannooo/Library/Keychains/iPhone.keychain 
    
    0 讨论(0)
提交回复
热议问题