Skip to content

Commit 81647da

Browse files
author
David Staheli
authored
Merge pull request #2842 from Microsoft/users/dastahel/xtc105
Port XamarinTestCloud improvement to releases/m105
2 parents a68216d + 6c835ab commit 81647da

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Tasks/XamarinTestCloud/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"version": {
1414
"Major": 1,
1515
"Minor": 0,
16-
"Patch": 28
16+
"Patch": 29
1717
},
1818
"demands": [],
1919
"minimumAgentVersion": "1.83.0",

Tasks/XamarinTestCloud/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"version": {
1414
"Major": 1,
1515
"Minor": 0,
16-
"Patch": 28
16+
"Patch": 29
1717
},
1818
"demands": [],
1919
"minimumAgentVersion": "1.83.0",

Tasks/XamarinTestCloud/xamarintestcloud.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)