Skip to content

codesign issue on travis macos Fix #135

thiolliere requested to merge fix_codesign into master

https://stackoverflow.com/questions/40994404/xcodebuild-stuck-at-codesign-step-when-being-run-in-travis-ci#41013151

I solved same problem by following steps that is described here.

https://github.com/travis-ci/travis-ci/issues/6791#issuecomment-261215038

a) change argument for all your security imports to keychain from -T to -A

security import ./scripts/certs/dist.cer -k ~/Library/Keychains/ios-build.keychain -A

b) after all imports execute command set-key-partition-list

security set-key-partition-list -S apple-tool:,apple: -s -k <keychainPass> <keychainName>

Merge request reports