File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1313 "version" : {
1414 "Major" : 1 ,
1515 "Minor" : 0 ,
16- "Patch" : 28
16+ "Patch" : 29
1717 },
1818 "demands" : [],
1919 "minimumAgentVersion" : " 1.83.0" ,
Original file line number Diff line number Diff line change 1313 "version" : {
1414 "Major" : 1 ,
1515 "Minor" : 0 ,
16- "Patch" : 28
16+ "Patch" : 29
1717 },
1818 "demands" : [],
1919 "minimumAgentVersion" : " 1.83.0" ,
Original file line number Diff line number Diff line change @@ -229,7 +229,10 @@ var submitToTestCloud = function (index) {
229229 // For an iOS .ipa app, look for an accompanying dSYM file
230230 if ( dsym && path . extname ( appFiles [ index ] ) == '.ipa' ) {
231231 // Find dSYM files matching the specified pattern
232- var alldsymFiles = tl . find ( path . dirname ( appFiles [ index ] ) ) ;
232+ // Check in one folder up since IPAs are now generated under a timestamped folder
233+ var ipaFolder = path . dirname ( path . dirname ( appFiles [ index ] ) ) ;
234+ tl . debug ( 'Checking for dSYM files under: ' + ipaFolder ) ;
235+ var alldsymFiles = tl . find ( ipaFolder ) ;
233236 var dsymFiles = tl . match ( alldsymFiles , dsym , { matchBase : true } ) ;
234237
235238 if ( ! dsymFiles || dsymFiles . length == 0 ) {
You can’t perform that action at this time.
0 commit comments