Skip to content

Commit 6821278

Browse files
[XamarinTestCloudV1] Migrate XamarinTestCloudV1 to Node20 (#19446)
* [XamarinTestCloudV1] Migrate XamarinTestCloudV1 to Node20 - added node10 and node16 handlers * [XamarinTestCloudV1] Migrate XamarinTestCloudV1 to Node20 - Migrate to node20 * [XamarinTestCloudV1] Migrate XamarinTestCloudV1 to Node20 - Fix ci error
1 parent 6e43ceb commit 6821278

37 files changed

+3258
-3698
lines changed

Tasks/XamarinTestCloudV1/_buildConfigs/Node20/package-lock.json

+539
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "vsts-tasks-xamarintestcloud",
3+
"version": "1.0.0",
4+
"description": "Azure Pipelines Xamarin Test Cloud Task",
5+
"main": "xamarintestcloud.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+ssh://[email protected]/Microsoft/azure-pipelines-tasks.git"
12+
},
13+
"author": "Microsoft Corporation",
14+
"license": "MIT",
15+
"bugs": {
16+
"url": "https://github.com/Microsoft/azure-pipelines-tasks/issues"
17+
},
18+
"homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
19+
"dependencies": {
20+
"azure-pipelines-task-lib": "^5.0.0-preview.0",
21+
"minimatch": "^3.0.4",
22+
"@types/mocha": "^5.2.7",
23+
"@types/node": "^20.11.0"
24+
},
25+
"devDependencies": {
26+
"typescript": "5.1.6"
27+
}
28+
}

Tasks/XamarinTestCloudV1/package-lock.json

+478-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tasks/XamarinTestCloudV1/package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@
1717
},
1818
"homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
1919
"dependencies": {
20-
"azure-pipelines-task-lib": "^2.9.3",
21-
"minimatch": "^3.0.4"
20+
"azure-pipelines-task-lib": "^5.0.0-preview.0",
21+
"minimatch": "^3.0.4",
22+
"@types/mocha": "^5.2.7",
23+
"@types/node": "^16.11.39"
24+
},
25+
"devDependencies": {
26+
"typescript": "4.0.2"
2227
}
2328
}

Tasks/XamarinTestCloudV1/task.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"author": "Microsoft Corporation",
1414
"version": {
1515
"Major": 1,
16-
"Minor": 232,
16+
"Minor": 234,
1717
"Patch": 0
1818
},
1919
"demands": [],
@@ -179,7 +179,11 @@
179179
],
180180
"instanceNameFormat": "Test $(app) with Xamarin.UITest in Xamarin Test Cloud",
181181
"execution": {
182-
"Node": {
182+
"Node10": {
183+
"target": "xamarintestcloud.js",
184+
"argumentFormat": ""
185+
},
186+
"Node16": {
183187
"target": "xamarintestcloud.js",
184188
"argumentFormat": ""
185189
},

Tasks/XamarinTestCloudV1/task.loc.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"author": "Microsoft Corporation",
1414
"version": {
1515
"Major": 1,
16-
"Minor": 232,
16+
"Minor": 234,
1717
"Patch": 0
1818
},
1919
"demands": [],
@@ -179,7 +179,11 @@
179179
],
180180
"instanceNameFormat": "ms-resource:loc.instanceNameFormat",
181181
"execution": {
182-
"Node": {
182+
"Node10": {
183+
"target": "xamarintestcloud.js",
184+
"argumentFormat": ""
185+
},
186+
"Node16": {
183187
"target": "xamarintestcloud.js",
184188
"argumentFormat": ""
185189
},

Tasks/XamarinTestCloudV1/typings/globals/mocha/index.d.ts

-202
This file was deleted.

Tasks/XamarinTestCloudV1/typings/globals/mocha/typings.json

-8
This file was deleted.

0 commit comments

Comments
 (0)