|
Bryan Rahn created JENKINS-13361:
------------------------------------ Summary: Build IPA causes dSYM.zip to include absolute paths Key: JENKINS-13361 URL: https://issues.jenkins-ci.org/browse/JENKINS-13361 Project: Jenkins Issue Type: Bug Components: xcode Affects Versions: current Reporter: Bryan Rahn Priority: Blocker Here is a sample of the 1.2.1 Xcode plugin build IPA: [build] $ zip -r -T -y MyApp-Alpha-380-dSYM.zip MyApp.app.dSYM adding: MyApp.app.dSYM/ (stored 0%) adding: MyApp.app.dSYM/Contents/ (stored 0%) adding: MyApp.app.dSYM/Contents/Info.plist (deflated 52%) adding: MyApp.app.dSYM/Contents/Resources/ (stored 0%) adding: MyApp.app.dSYM/Contents/Resources/DWARF/ (stored 0%) adding: MyApp.app.dSYM/Contents/Resources/DWARF/MyApp (deflated 69%) Here is the output of the 1.3.1 release Xcode plugin build IPA: [build] $ zip -r -T -y MyApp-Alpha-416-dSYM.zip /Users/Shared/Jenkins/Home/jobs/MyApp/workspace/build/MyApp.app.dSYM adding: Users/Shared/Jenkins/Home/jobs/MyApp/workspace/build/MyApp.app.dSYM/ (stored 0%) adding: Users/Shared/Jenkins/Home/jobs/MyApp/workspace/build/MyApp.app.dSYM/Contents/ (stored 0%) adding: Users/Shared/Jenkins/Home/jobs/MyApp/workspace/build/MyApp.app.dSYM/Contents/Info.plist (deflated 52%) adding: Users/Shared/Jenkins/Home/jobs/MyApp/workspace/build/MyApp.app.dSYM/Contents/Resources/ (stored 0%) adding: Users/Shared/Jenkins/Home/jobs/MyApp/workspace/build/MyApp.app.dSYM/Contents/Resources/DWARF/ (stored 0%) adding: Users/Shared/Jenkins/Home/jobs/MyApp/workspace/build/MyApp.app.dSYM/Contents/Resources/DWARF/ExpediaBookings (deflated 69%) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
|||||||||||
|
In reply to this post by JIRA noreply@jenkins-ci.org
|
|||||||||||
|
In reply to this post by JIRA noreply@jenkins-ci.org
|
|||||||||||
|
In reply to this post by JIRA noreply@jenkins-ci.org
|
|||||||||||
|
In reply to this post by JIRA noreply@jenkins-ci.org
|
|||||||||||
|
In reply to this post by JIRA noreply@jenkins-ci.org
|
|||||||||||||||||||
| Powered by Nabble | Edit this page |

This is causing some problems when we upload our zipped .dSYM to our crash reporting service.
I've modified it locally to use "ditto -c -k --keepParent -rsrc" rather than zip, seems to work fine.