简体   繁体   中英

Xamarin Ios build hangs on signing

We build ios using xamarin, the build hangs on signing and didn't throw any exception about 2.5 hours

Sign and provision profile is good. What could be?

在此处输入图片说明

        Target _CodesignAppBundle:
            Codesign Task
              CodesignAllocate: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoo              Entitlements: obj/iPhone/Release/Entitlements.xcent
              Resource: bin/iPhone/Release/App.app
              ResourceRules: <null>
              SigningKey: ECFF24B11990B9BXXXXXXX194A29B83E87776A7B
              ExtraArgs: <null>
            Tool /usr/bin/codesign execution started with arguments: -v --force --sign ECFF24B11990B9BXXXXXXX194A29B83E87776A7B --entitlements /Users/admin/buildAgent_2/temp/buildTmp/SOURCE/App/obj/iPhone/Release/Entitlements.xcent /Users/admin/buildAgent_2/temp/buildTmp/SOURCE/App/bin/iPhone/Release/App.app 

Maybe it requires to unlock the keychain access : a popup waiting for the keychain password is prompted on your server, but you don't see it.

I had to deal with this kind of problem when configuring a Xamarin app on Jenkins CI. If so, just unlock the keychain with a bash script :

KEYCHAIN=/Users/xxx/Keychains/xxx.keychain
security -v unlock-keychain -p mypassword $KEYCHAIN

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM