I'm running a Jenkins CI server on an OS X machine. The server is running as a standard user 'john', and is started by running launchctl. One of the things this server does is build XCode projects using keys and certificates stored in a keychain 'xcode.keychain':

Jenkins (which is running under the user 'john' according to activity monitor) calls these commands from a script when the user presses a button on the web interface.

security default-keychain -s /Users/john/Library/Keychains/xcode.keychain
security unlock-keychain -p password /Users/john/Library/Keychains/xcode.keychain
xcodebuild ...

If I happen to be logged into the server as 'john' via the UI, the keychain gets unlocked properly when Jenkins calls those commands. But, if I'm not logged in, xcode.keychain doesn't get unlocked and the build fails. Any ideas?

link|improve this question
2  
Moving all the keys and certs into the System.keychain fixed this problem. I'm guessing it has something to do with Jenkins running from launchctl, but still curious why exactly it wasn't working before. – user756365 Jun 21 '11 at 14:40
How exactly did you do this? I tried to replicate your solution, but I still get an error :( – Zsub Dec 12 '11 at 15:35
YMMV, but I just moved my keys and certs to the system keychain as recommended above and it worked for me. – makdad Apr 11 at 2:55
Reason and solution explained here: stackoverflow.com/a/9482707/111823 – vpdn Apr 25 at 6:18
feedback

4 Answers

up vote 1 down vote accepted

Running Jenkins without launchd works. I used the following command: sudo su jenkins -c "JENKINS_HOME=/Users/Shared/Jenkins/Home /Library/Application\ Support/Jenkins/jenkins-runner.sh"

link|improve this answer
feedback

I stumbled upon the exact same issue recently.

security list-keychains -s /Users/john/Library/Keychains/xcode.keychain probably will fix your problem. Let me know if it works.

Recently I found a solution to this over there: Missing certificates and keys in the keychain while using Jenkins/Hudson as Continuous Integration for iOS and Mac development

link|improve this answer
feedback

I have the same problem, today I reset our build servers login keychain and re-added some certs and keys. Sort of as expected, it didn't build. For some reason, even though the login keychain from our Jenkins user shows up in the output of security list-keychains, Jenkins can't sign the app.

I tried running the same job while logged in via Screen Sharing and strangely, a window pops up asking me if codesign can access the keychain!

My suspicion is that this does have something to do with each other, but I'm investigating how or what.

link|improve this answer
Ever found out the problem? – Tom van Zummeren Feb 2 at 21:15
No, I haven't got a clue. I'm planning on switching plugins, though. Currently we're using SICCI for Xcode, but there's another plugin I'd like to try (forgot the name though). – Zsub Feb 3 at 11:32
feedback

You could try Jenkins.app https://github.com/stisti/jenkins-app, an alternative way to run Jenkins. It runs Jenkins in a user session, so Keychain should not be a problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown