Skip to content

Commit e990086

Browse files
Josh-01ManasaDevadasbishal-pdMSFTleantkalexander-prozorov
authored
Users/jysin/manual val preview release (#13438)
* Manual validation Preview version release * Changed notifyUsers field name * Changed notifyUsers field name * Build Machine Image task is not able to execute the script inline with arguments (#13393) * Removed source command to run the inline script with argument * Removed source command from inline to run script with args * Update default.linux.template.json * Update default.managed.linux.template.json * task.json with patch no * Updated task.loc.json with patch number Co-authored-by: Bishal Prasad <[email protected]> * Updated stale bot * downgrade uuid npm package version (#13414) Co-authored-by: Alexander Prozorov <[email protected]> * Added changes from PR #10947. Bumped task version (#13422) Added changes from PR #10947. Bumped task version * Bumped version to include package in release * Minor version made aprint number Co-authored-by: Jyotsna Singh <[email protected]> Co-authored-by: ManasaDevadas <[email protected]> Co-authored-by: Bishal Prasad <[email protected]> Co-authored-by: Leah Antkiewicz <[email protected]> Co-authored-by: Alexander Prozorov <[email protected]> Co-authored-by: Alexander Prozorov <[email protected]> Co-authored-by: Anatoly Bolshakov <[email protected]>
1 parent 9107e24 commit e990086

File tree

11 files changed

+72
-17
lines changed

11 files changed

+72
-17
lines changed

Tasks/ManualValidationV0/task.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
],
1616
"version": {
1717
"Major": 0,
18-
"Minor": 0,
19-
"Patch": 2
18+
"Minor": 174,
19+
"Patch": 0
2020
},
2121
"preview": true,
2222
"inputs": [

Tasks/ManualValidationV0/task.loc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
],
1616
"version": {
1717
"Major": 0,
18-
"Minor": 0,
19-
"Patch": 2
18+
"Minor": 174,
19+
"Patch": 0
2020
},
2121
"preview": true,
2222
"inputs": [

Tasks/SshV0/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tasks/SshV0/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"azure-pipelines-task-lib": "^2.9.3",
77
"scp2": "0.5.0",
88
"ssh2": "0.8.2",
9-
"uuid": "^8.2.0"
9+
"uuid": "^3.2.1"
1010
}
1111
}

Tasks/SshV0/task.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"author": "Microsoft Corporation",
1818
"version": {
1919
"Major": 0,
20-
"Minor": 173,
21-
"Patch": 1
20+
"Minor": 174,
21+
"Patch": 0
2222
},
2323
"demands": [],
2424
"minimumAgentVersion": "2.102.0",

Tasks/SshV0/task.loc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"author": "Microsoft Corporation",
1818
"version": {
1919
"Major": 0,
20-
"Minor": 173,
21-
"Patch": 1
20+
"Minor": 174,
21+
"Patch": 0
2222
},
2323
"demands": [],
2424
"minimumAgentVersion": "2.102.0",

Tasks/XcodeV5/Strings/resources.resjson/en-US/resources.resjson

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,12 @@
6464
"loc.input.help.cwd": "(Optional) Enter the working directory in which to run the build. If no value is entered, the root of the repository will be used.",
6565
"loc.input.label.useXcpretty": "Use xcpretty",
6666
"loc.input.help.useXcpretty": "Specify whether to use xcpretty to format xcodebuild output. Enabling this requires xcpretty to be installed on the agent machine. If xcpretty is not installed, raw xcodebuild output is shown. xcpretty is preinstalled on Azure Pipelines hosted build agents. See [xcpretty](https://github.com/supermarin/xcpretty) on GitHub.",
67+
"loc.input.label.xcprettyArgs": "Xcpretty arguments",
68+
"loc.input.help.xcprettyArgs": "Additional arguments to pass to xcpretty.",
6769
"loc.input.label.publishJUnitResults": "Publish test results to Azure Pipelines",
6870
"loc.input.help.publishJUnitResults": "Specify whether to publish JUnit test results to Azure Pipelines. This requires xcpretty to be enabled to generate JUnit test results.",
71+
"loc.input.label.testRunTitle": "Test run title",
72+
"loc.input.help.testRunTitle": "Title of the test run when publishing JUnit test results to Azure Pipelines.",
6973
"loc.messages.SignIdNotFound": "Failed to find the iOS signing identity. Verify that signing and provisioning information is provided.",
7074
"loc.messages.TempKeychainSetupFailed": "Failed to add the temporary keychain to the keychains search path.",
7175
"loc.messages.ProvProfileDetailsNotFound": "Failed to find details for the provisioning profile: %s",

Tasks/XcodeV5/postxcode.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ async function run() {
4949
} else {
5050
const TESTRUN_SYSTEM = "VSTS - xcode";
5151
const tp = new tl.TestPublisher("JUnit");
52-
tp.publish(matchingTestResultsFiles, false, "", "", "", true, TESTRUN_SYSTEM);
52+
const testRunTitle: string = tl.getInput('testRunTitle');
53+
tp.publish(matchingTestResultsFiles, false, "", "", testRunTitle, true, TESTRUN_SYSTEM);
5354
}
5455
}
5556
}

Tasks/XcodeV5/task.json

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"author": "Microsoft Corporation",
1313
"version": {
1414
"Major": 5,
15-
"Minor": 170,
16-
"Patch": 2
15+
"Minor": 175,
16+
"Patch": 0
1717
},
1818
"releaseNotes": "This version of the task is compatible with Xcode 8 - 11. Features that were solely to maintain compatibility with Xcode 7 have been removed. This task has better options for using Microsoft-hosted macOS agents.",
1919
"demands": [
@@ -331,6 +331,15 @@
331331
"helpMarkDown": "Specify whether to use xcpretty to format xcodebuild output. Enabling this requires xcpretty to be installed on the agent machine. If xcpretty is not installed, raw xcodebuild output is shown. xcpretty is preinstalled on Azure Pipelines hosted build agents. See [xcpretty](https://github.com/supermarin/xcpretty) on GitHub.",
332332
"groupName": "advanced"
333333
},
334+
{
335+
"name": "xcprettyArgs",
336+
"type": "string",
337+
"label": "Xcpretty arguments",
338+
"required": false,
339+
"helpMarkDown": "Additional arguments to pass to xcpretty.",
340+
"groupName": "advanced",
341+
"visibleRule": "useXcpretty == true"
342+
},
334343
{
335344
"name": "publishJUnitResults",
336345
"type": "boolean",
@@ -339,6 +348,15 @@
339348
"defaultValue": false,
340349
"groupName": "advanced",
341350
"helpMarkDown": "Specify whether to publish JUnit test results to Azure Pipelines. This requires xcpretty to be enabled to generate JUnit test results."
351+
},
352+
{
353+
"name": "testRunTitle",
354+
"type": "string",
355+
"label": "Test run title",
356+
"required": false,
357+
"groupName": "advanced",
358+
"helpMarkDown": "Title of the test run when publishing JUnit test results to Azure Pipelines.",
359+
"visibleRule": "publishJUnitResults == true"
342360
}
343361
],
344362
"execution": {

Tasks/XcodeV5/task.loc.json

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"author": "Microsoft Corporation",
1313
"version": {
1414
"Major": 5,
15-
"Minor": 170,
16-
"Patch": 2
15+
"Minor": 175,
16+
"Patch": 0
1717
},
1818
"releaseNotes": "ms-resource:loc.releaseNotes",
1919
"demands": [
@@ -331,6 +331,15 @@
331331
"helpMarkDown": "ms-resource:loc.input.help.useXcpretty",
332332
"groupName": "advanced"
333333
},
334+
{
335+
"name": "xcprettyArgs",
336+
"type": "string",
337+
"label": "ms-resource:loc.input.label.xcprettyArgs",
338+
"required": false,
339+
"helpMarkDown": "ms-resource:loc.input.help.xcprettyArgs",
340+
"groupName": "advanced",
341+
"visibleRule": "useXcpretty == true"
342+
},
334343
{
335344
"name": "publishJUnitResults",
336345
"type": "boolean",
@@ -339,6 +348,15 @@
339348
"defaultValue": false,
340349
"groupName": "advanced",
341350
"helpMarkDown": "ms-resource:loc.input.help.publishJUnitResults"
351+
},
352+
{
353+
"name": "testRunTitle",
354+
"type": "string",
355+
"label": "ms-resource:loc.input.label.testRunTitle",
356+
"required": false,
357+
"groupName": "advanced",
358+
"helpMarkDown": "ms-resource:loc.input.help.testRunTitle",
359+
"visibleRule": "publishJUnitResults == true"
342360
}
343361
],
344362
"execution": {

0 commit comments

Comments
 (0)