How does Raygun associate dSYM files with builds?
sipp
Posted on
Sep 23 2015
Our Xamarin build produces dSYM files at ./Ios/bin/iPhone/Ad-Hoc/App.dSYM. I would like to upload this dSYM file in a Jenkins post-build step.
According to the blog post about uploading dSYM files (https://raygun.io/blog/2014/05/jenkins-dsym-upload-to-raygun/), the dSYM is zipped and posted to Raygun's API.
My question is, can I name the zip file arbitrarily and can Raygun still associate it with the correct build? Or must I name the Zip file a specific way in order for that association to take place? And if the latter, does the example cURL command in the blog post denote the exact file name specification?
Jason Fauchelle
Raygun
Posted on
Sep 23 2015
Hi Sipp,
You can name the file however you like at your end - the blog post just shows an example, which I should have mentioned as such. The id used for association is encoded in the dSYM file which is read when uploaded.
Note that the file name you use is not displayed in Raygun though - dSYMs are listed using their ids instead.
Let me know if you have further questions.
-Jason Fauchelle
sipp
Posted on
Sep 23 2015
Jason, thanks so much for the reply. Your answer is clear.